aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGiovanni Bajo <giovannibajo@libero.it>2003-06-30 20:46:19 +0200
committerWolfgang Bangerth <bangerth@gcc.gnu.org>2003-06-30 12:46:19 -0600
commit984e085f58568252524f3fc7bdf03086762a0c39 (patch)
tree34a4fc48068491e85aaf16c62b4d02788ac94312 /gcc
parent9b61cc1bccb144e5483c6463348ef13915fbe829 (diff)
downloadgcc-984e085f58568252524f3fc7bdf03086762a0c39.zip
gcc-984e085f58568252524f3fc7bdf03086762a0c39.tar.gz
gcc-984e085f58568252524f3fc7bdf03086762a0c39.tar.bz2
re PR c++/10750 (error with using template template expression in static const initializer)
2003-06-17 Giovanni Bajo <giovannibajo@libero.it> PR c++/10750 * g++.dg/parse/constant2.C: New test. From-SVN: r68721
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.dg/parse/constant2.C28
2 files changed, 33 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index b0d13f2..5163f62 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2003-06-17 Giovanni Bajo <giovannibajo@libero.it>
+
+ PR c++/10750
+ * g++.dg/parse/constant2.C: New test.
+
2003-06-30 Giovanni Bajo <giovannibajo@libero.it>
PR c++/11106
diff --git a/gcc/testsuite/g++.dg/parse/constant2.C b/gcc/testsuite/g++.dg/parse/constant2.C
new file mode 100644
index 0000000..43fad2e
--- /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>;