summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/readability-static-accessed-through-instance.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/clang-tidy/test/readability-static-accessed-through-instance.cpp')
-rw-r--r--tools/clang-tidy/test/readability-static-accessed-through-instance.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/clang-tidy/test/readability-static-accessed-through-instance.cpp b/tools/clang-tidy/test/readability-static-accessed-through-instance.cpp
new file mode 100644
index 0000000000..95f13b994c
--- /dev/null
+++ b/tools/clang-tidy/test/readability-static-accessed-through-instance.cpp
@@ -0,0 +1,11 @@
+struct C {
+ static int x;
+};
+
+int C::x = 0;
+
+// Expressions with side effects
+C &f(int, int, int, int);
+void g() {
+ f(1, 2, 3, 4).x;
+}