aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qstring-varargs/main.cpp
blob: cdef4edf65988de4d7af3af4845e4336fdf757c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <QtCore/QString>

void simple_printf(const char* ...)
{
}


void test()
{
    QString s;
    printf("%s", s); // Warn
    simple_printf("%s", s); // Warn
    const char *foo = "f";
    printf("%s", foo);

    QByteArray b;
    printf("%s", b); // Warn
}