forked from qt-creator/qt-creator
Tests: Add project with suggestions for testing the C++ tools.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#include "header.h"
|
||||
#include "dummy.h"
|
||||
|
||||
#include <QtCore/QString>
|
||||
|
||||
int xi = 10;
|
||||
|
||||
int freefunc2(int a) { return a; }
|
||||
|
||||
int freefunc2(double)
|
||||
{ return 1; }
|
||||
|
||||
int freefunc2(const QString &)
|
||||
{ return 1; }
|
||||
|
||||
void here() {
|
||||
test::Dummy d;
|
||||
d;
|
||||
}
|
||||
Reference in New Issue
Block a user