aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/data/highlightingmarks.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/unittest/data/highlightingmarks.cpp')
-rw-r--r--tests/unit/unittest/data/highlightingmarks.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/unit/unittest/data/highlightingmarks.cpp b/tests/unit/unittest/data/highlightingmarks.cpp
index a28210012b..bc90444028 100644
--- a/tests/unit/unittest/data/highlightingmarks.cpp
+++ b/tests/unit/unittest/data/highlightingmarks.cpp
@@ -745,3 +745,9 @@ void f4()
ASSIGN(int i, thePointer);
ASSIGN2(int i, thePointer);
}
+
+const int MyConstant = 8;
+void f5()
+{
+ int arr[MyConstant][8];
+}