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
8struct B {};
9
10template <typename T> void Bar ()
11{
12  T::foo (); // { dg-error "is not a member of" "" }
13}
14
15void Foo ()
16{
17  Bar<B> (); // { dg-message "required" "" }
18}
19