Tests: Add project with suggestions for testing the C++ tools.

This commit is contained in:
Leandro Melo
2010-10-04 17:07:03 +02:00
parent 2ec3acaf4e
commit f1e8e737c9
6 changed files with 330 additions and 0 deletions
@@ -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;
}