summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/static18.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/template/static18.C')
-rw-r--r--gcc/testsuite/g++.dg/template/static18.C13
1 files changed, 13 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/template/static18.C b/gcc/testsuite/g++.dg/template/static18.C
new file mode 100644
index 000000000..2a2ace939
--- /dev/null
+++ b/gcc/testsuite/g++.dg/template/static18.C
@@ -0,0 +1,13 @@
+// PR c++/23914
+
+template <class T>
+struct foo_template {
+ static const unsigned complexity = 0;
+};
+
+template <int x> struct STATIC_ASSERTION {};
+
+void gcc_402_problem_minimal()
+{
+ sizeof(STATIC_ASSERTION< foo_template<int>::complexity >);
+}