blob: 52f5dff284a27135d2c81e7b797fc161959b4d34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
SPDX-FileCopyrightText: 2003 Cornelius Schumacher <schumacher@kde.org>
SPDX-License-Identifier: MIT
*/
#include "test3.h"
#include <QGuiApplication>
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
Q_UNUSED(app);
TestNameSpace::Test3 *t = new TestNameSpace::Test3();
delete t;
return 0;
}
|