1 // { dg-do compile }
2 
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 27 Mar 2003 <nathan@codesourcery.com>
5 
6 // PR 11617: Failed to diagnose missing function.
7 
8 struct B {};
9 
Bar()10 template <typename T> void Bar ()
11 {
12   T::foo (); // { dg-error "is not a member of" }
13 }
14 
Foo()15 void Foo ()
16 {
17   Bar<B> (); // { dg-message "required" }
18 }
19