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.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit/unittest/data/highlightingmarks.cpp b/tests/unit/unittest/data/highlightingmarks.cpp
index a703e89a11..2476cabfb2 100644
--- a/tests/unit/unittest/data/highlightingmarks.cpp
+++ b/tests/unit/unittest/data/highlightingmarks.cpp
@@ -695,3 +695,7 @@ protected:
private:
static int privateValue;
};
+
+template <int i, int j> struct S { };
+template <int i> using spec = S<i, 1>;
+spec<2> s;