blob: 796115a28aaedcd6db869f2fadbea39bab77d9fd (
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 "test2.h"
#include <QGuiApplication>
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
Q_UNUSED(app);
Test2 *t = new Test2();
delete t;
return 0;
}
|