blob: 5cfd0bef90246af13717f2abcf55fb71c39e2683 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
SPDX-FileCopyrightText: 2009 Pino Toscano <pino@kde.org>
SPDX-License-Identifier: MIT
*/
#include "test3a.h"
#include <QGuiApplication>
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
Q_UNUSED(app);
TestNameSpace::InnerNameSpace::Test3a *t = new TestNameSpace::InnerNameSpace::Test3a();
delete t;
return 0;
}
|