summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/linguist/test_i18n_native_language/lib.cpp
blob: 66cdaa8d09b403600b111f7bf18333c6c01d83db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: BSD-3-Clause

#include <QCoreApplication>
#include <QDebug>

void printStuff()
{
    qDebug()
        << QObject::tr("We must not see this in the native language's .tr file.")
        << QObject::tr("%n argument(s) passed", "", 156);
}