aboutsummaryrefslogtreecommitdiff
path: root/test/ASTMerge/class/Inputs/class1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/ASTMerge/class/Inputs/class1.cpp')
-rw-r--r--test/ASTMerge/class/Inputs/class1.cpp48
1 files changed, 0 insertions, 48 deletions
diff --git a/test/ASTMerge/class/Inputs/class1.cpp b/test/ASTMerge/class/Inputs/class1.cpp
deleted file mode 100644
index 2bd5503ecf..0000000000
--- a/test/ASTMerge/class/Inputs/class1.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-struct A {
- public:
- int x;
-};
-
-struct B : A {
- float y;
- float foo();
-};
-
-struct C {
- C(int i = 10);
- C(const C&);
- C &operator=(C&);
- ~C();
-};
-
-enum E {
- b = 1
-};
-
-//Friend import tests
-void f();
-int g(int a);
-struct X;
-struct Y;
-
-struct F1 {
-public:
- int x;
- friend struct X;
- friend int g(int);
- friend void f();
-};
-
-struct F2 {
-public:
- int x;
- friend struct X;
- friend void f();
-};
-
-struct F3 {
-public:
- int x;
- friend int g(int);
- friend void f();
-};