File indexing completed on 2025-07-13 04:15:59

0001 #include <QTime>
0002 int main()
0003 {
0004     QTime t(15, 30, 10, 123);
0005     Q_UNUSED(t.toString()); // prevent compiler optimizing away the unused object
0006     return 0;
0007 }