summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/constant2.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/parse/constant2.C')
-rw-r--r--gcc/testsuite/g++.dg/parse/constant2.C28
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/parse/constant2.C b/gcc/testsuite/g++.dg/parse/constant2.C
new file mode 100644
index 000000000..43fad2e28
--- /dev/null
+++ b/gcc/testsuite/g++.dg/parse/constant2.C
@@ -0,0 +1,28 @@
+// { dg-do compile }
+// Origin: <gawrilow at math dot tu-berlin dot de>
+// PR c++/10750: error when using a static const member initialized
+// with a dependent expression as constant-expression
+
+struct A
+{
+ enum { a = 42 };
+};
+
+template <class Q>
+struct B
+{
+ static const int b = Q::a;
+};
+
+template <typename T, template <typename> class P>
+struct C
+{
+ static const bool a = T::a;
+ static const bool a_ = a;
+ static const bool b = P<T>::b;
+ static const bool b_ = b;
+ static const int c = sizeof(T);
+ static const int c_ = c;
+};
+
+template struct C<A,B>;