OSDN Git Service

PR testsuite/25241
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / lookup2.C
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
10 template <typename T> void Bar ()
11 {
12   T::foo (); // { dg-error "is not a member of" "" }
13 }
14
15 void Foo ()
16 {
17   Bar<B> (); // { dg-message "instantiated" "" }
18 }