OSDN Git Service

* parser.c (cp_parser_class_specifier): Set class location to that
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / dependent-expr2.C
1 // { dg-do compile }
2
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 2 Aug 2003 <nathan@codesourcery.com>
5
6 // PR 11704. ICE
7
8 struct A 
9 {
10   int foo() 
11   {
12     return 5;
13   }
14 };
15
16 template <class T> // If B is not template it works
17 struct B
18 {
19   bool bar(A& a)
20   {
21     return a.foo == 0; // { dg-error "" "" }
22   }
23 };