Commit 984e085f by Giovanni Bajo Committed by Wolfgang Bangerth

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
parent 9b61cc1b
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> 2003-06-30 Giovanni Bajo <giovannibajo@libero.it>
PR c++/11106 PR c++/11106
......
// { 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>;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment