diff options
Diffstat (limited to 'gcc/testsuite/g++.dg/template/cast1.C')
-rw-r--r-- | gcc/testsuite/g++.dg/template/cast1.C | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/template/cast1.C b/gcc/testsuite/g++.dg/template/cast1.C new file mode 100644 index 000000000..fca3511e2 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/cast1.C @@ -0,0 +1,22 @@ +// { dg-do compile } + +// Copyright (C) 2004 Free Software Foundation, Inc. +// Contributed by Nathan Sidwell 14 Dec 2004 <nathan@codesourcery.com> + +// PR 18949. Forgot to convert from reference. +// Origin: Volker Reichelt <reichelt@gcc.gnu.org> + +struct A +{ + void foo(); +}; + +template<int> void bar(A& a) +{ + const_cast<A&>(a).foo(); + static_cast<A&>(a).foo(); + reinterpret_cast<A&>(a).foo(); + ((A&)a).foo(); +} + +template void bar<0>(A& a); |