summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/linguist/test_i18n_source_language/lib.cpp
blob: f99e0a9bf5514a749a2c708f49301e664dbea478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#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);
}