Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / lookup2.C
blob493b807aec98a3b576bdd1065ffbc323395fd370
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 27 Mar 2003 <nathan@codesourcery.com>
6 // PR 11617: Failed to diagnose missing function.
8 struct B {};
10 template <typename T> void Bar ()
12   T::foo (); // { dg-error "is not a member of" "" }
15 void Foo ()
17   Bar<B> (); // { dg-error "instantiated" "" }