aboutsummaryrefslogtreecommitdiffstats
path: root/test/vardecl.cpp
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2020-06-04 14:25:14 +0000
committerbloodstalker <thabogre@gmail.com>2020-06-04 14:25:14 +0000
commit2948f61947b9790a29d34fc48d8e5683467919db (patch)
treeceff93e8c5a38fa9b0056b432672e7205bf5f0d8 /test/vardecl.cpp
parentadding llvm11 to travis (diff)
downloadcgrep-2948f61947b9790a29d34fc48d8e5683467919db.tar.gz
cgrep-2948f61947b9790a29d34fc48d8e5683467919db.zip
added a new switch:recorddecl. the test script is still WIP.
Diffstat (limited to '')
-rw-r--r--test/vardecl.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/vardecl.cpp b/test/vardecl.cpp
new file mode 100644
index 0000000..3f17a21
--- /dev/null
+++ b/test/vardecl.cpp
@@ -0,0 +1,21 @@
+
+namespace vardecl_ns{
+int a;
+
+int testFunction(int a, int b);
+int testFunction(int a, int b) { return a + b; }
+
+class testClass {
+public:
+ testClass(int a) : a(a) {}
+ virtual ~testClass();
+
+ void cxxMethod(double a) {}
+
+private:
+ int a;
+};
+
+#define vardeclmacro varDeclMacroExpanded
+int vardeclmacro;
+}; // namespace