File indexing completed on 2024-05-12 17:13:24

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