From 835b5ba3d6594a60963af89b0487f89afe6e19f1 Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Tue, 14 Jul 2020 20:00:12 +0430 Subject: wip-tests --- test/vardecl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'test/vardecl.cpp') diff --git a/test/vardecl.cpp b/test/vardecl.cpp index 3f17a21..8bce877 100644 --- a/test/vardecl.cpp +++ b/test/vardecl.cpp @@ -1,21 +1,21 @@ namespace vardecl_ns{ -int a; +int gtesta; int testFunction(int a, int b); int testFunction(int a, int b) { return a + b; } class testClass { public: - testClass(int a) : a(a) {} + testClass(int a) : testa(a) {} virtual ~testClass(); void cxxMethod(double a) {} private: - int a; + int testa; }; #define vardeclmacro varDeclMacroExpanded -int vardeclmacro; +int testvardeclmacro; }; // namespace -- cgit v1.2.3