Warning, /sdk/clazy/tests/qt-keyword-emit/main.cpp.fixed.expected is written in an unsupported language. File is not indexed.

0001 #include <QtCore/QObject>
0002 #include <QtCore/QString>
0003 
0004 class MyObj : public QObject
0005 {
0006 public:
0007 Q_SIGNALS:
0008     void signal1();
0009 
0010     void test()
0011     {
0012         Q_EMIT signal1();
0013     }
0014 };