aboutsummaryrefslogtreecommitdiffstats
path: root/test/declrefexpr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/declrefexpr.cpp')
-rw-r--r--test/declrefexpr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/declrefexpr.cpp b/test/declrefexpr.cpp
index c184577..b2a617d 100644
--- a/test/declrefexpr.cpp
+++ b/test/declrefexpr.cpp
@@ -4,7 +4,7 @@ namespace declrefexpr_ns{
class testClass {
public:
testClass() = default;
- int a;
+ int testa;
private:
};
@@ -12,9 +12,9 @@ private:
int __attribute__((weak)) main(int argc, char *argv[]) {
int a;
- int b;
+ int testb;
declrefexpr_ns::testClass tc;
- tc.a = 10;
+ tc.testa = 10;
- return a + b;
+ return a + testb;
}