OSDN Git Service

PR c++/48261
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / dependent-expr3.C
1 // { dg-options -std=c++98 }
2 // { dg-do compile }
3 // Origin: jbrandmeyer at users dot sourceforge dot net
4 // PR c++/12573: COMPONENT_REFs must be inspected for dependness.
5
6 template <bool> struct S;
7
8 template <typename K> struct Y : K {
9   int x;
10 };
11
12 template <class T> struct Z {
13   S< (bool)(&static_cast<Y<T> *>(0)->x == 0) > // { dg-error "" }
14   s;
15 };