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

0001 #include <QtCore/QDateTime>
0002 
0003 void test()
0004 {
0005     QDateTime::currentDateTime(); // OK
0006     QDateTime::currentDateTimeUtc(); // OK
0007     QDateTime::currentDateTimeUtc().toTime_t(); // Warning
0008     QDateTime::currentDateTimeUtc(); // Warning
0009 
0010 
0011 }