Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / dependent-expr2.C
blob06f056b4140ecb3e942ea3d826cbe27d42d42ba9
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 2 Aug 2003 <nathan@codesourcery.com>
6 // PR 11704. ICE
8 struct A 
10   int foo() 
11   {
12     return 5;
13   }
16 template <class T> // If B is not template it works
17 struct B
19   bool bar(A& a)
20   {
21     return a.foo == 0; // { dg-error "" "" }
22   }