1 // Copyright (C) 2005 Free Software Foundation, Inc.
2 // Contributed by Nathan Sidwell 8 Jun 2005 <nathan@codesourcery.com>
3 
4 struct A
5 {
6   operator int ();
7 };
8 
9 template <typename T> struct TPL : A
10 {
11   using A::operator T; // { dg-error "operator float" }
12 };
13 
14 TPL<int> i;
15 TPL<float> j; // { dg-message "required" }
16