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 {
fooA10   int foo()
11   {
12     return 5;
13   }
14 };
15 
16 template <class T> // If B is not template it works
17 struct B
18 {
barB19   bool bar(A& a)
20   {
21     return a.foo == 0; // { dg-error "" }
22   }
23 };
24