PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / cast1.C
blobfca3511e2e95c811ccec82ec3c1c8f4de8208b44
1 // { dg-do compile }
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>
9 struct A
11     void foo();
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();
19     ((A&)a).foo();
22 template void bar<0>(A& a);