File indexing completed on 2024-05-05 05:41:36

0001 #include <QtWidgets/QComboBox>
0002 
0003 void test_bug392441()
0004 {
0005     QComboBox *combo;
0006     QObject::connect(combo, QOverload<int>::of(&QComboBox::currentIndexChanged), [] (int) {}); // OK
0007 }