aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cppeditor/testcases/move-class/complex/thesource.cpp
blob: 645b6a4b13b1e32f6a21ffcb1f1ce784bd2de3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "theheader.h"

namespace Project {
namespace Internal {

static void someFunction() {}

class TheClass::Private
{
    void func();
    int m_member = 0;
};

void TheClass::defined() {}

void TheClass::Private::func() {}

}
}