aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/cast1.C
blob: fca3511e2e95c811ccec82ec3c1c8f4de8208b44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);