3 // Copyright (C) 2004 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 14 Dec 2004 <nathan@codesourcery.com>
6 // PR 18949. Forgot to convert from reference.
7 // Origin: Volker Reichelt <reichelt@gcc.gnu.org>
14 template<int> void bar(A& a)
16 const_cast<A&>(a).foo();
17 static_cast<A&>(a).foo();
18 reinterpret_cast<A&>(a).foo();
22 template void bar<0>(A& a);