debugger: add a manual test with a object reference

This commit is contained in:
hjk
2010-01-04 13:16:10 +01:00
parent 9ad447b8a4
commit 7d5ef1fbf0

View File

@@ -27,6 +27,11 @@
**
**************************************************************************/
//#include <complex>
//template <typename T> class B; B foo() {}
#include <QtCore/QDebug>
#include <QtCore/QDateTime>
#include <QtCore/QDir>
@@ -69,6 +74,18 @@
#include <windows.h>
#endif
template <typename T> class Vector
{
public:
explicit Vector(int size) : m_size(size), m_data(new T[size]) {}
~Vector() { delete [] m_data; }
//...
private:
int m_size;
T *m_data;
};
uint qHash(const QMap<int, int> &)
{
@@ -1347,8 +1364,22 @@ void testEndlessRecursion()
testEndlessRecursion();
}
QString fooxx()
{
return "bababa";
}
int testReference()
{
QString a = "hello";
const QString &b = fooxx();
QString c = "world";
return a.size() + b.size() + c.size();
}
int main(int argc, char *argv[])
{
testReference();
//testEndlessRecursion();
testQStack();
testUninitialized();