aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qmap-with-pointer-key/main.cpp
blob: 9763c67b10c78f1665d5a2bd0e1add347c113814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <QtCore/QMap>






struct A
{

};




void test()
{
    QMap<A*, int> map;
    QMap<A, int> map2;
}