File indexing completed on 2024-04-28 05:38:40

0001 #include <QtCore/QSet>
0002 
0003 void test()
0004 {
0005     QSet<int> s1, s2;
0006     s1.intersects(s2); // OK
0007     s1.intersect(s2).isEmpty(); // Warning
0008 }