Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / conv-3.C
blob14b1446a2bd9a3c52259049fd8c35a1cd0430120
1 // { dg-do compile }
3 // Copyright (C) 2004 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 21 Jul 2004 <nathan@codesourcery.com>
6 // { dg-final { scan-assembler "_ZNK2A1IiEcviEv" } }
8 template <typename T> struct A1 
10   operator T () const;  // this one
13 struct A2 : A1<int>
15   template<typename T> operator T () const;
18 int Foo (A2 const &b)
20   return b;