aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/abi/mangle49.C
blob: 3795c556d0aceb8e7f248633df1625936d1751e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PR c++/49932
// { dg-do compile { target c++11 } }
// { dg-options "-fabi-version=0" }

template < typename T >
auto
f1( T x ) // ICE on here
  -> typename decltype( x )::type {}

template < typename T >
typename decltype( T() )::type
f2( T x ) {} // ICE on here

struct S { typedef void type; };

void g()
{
  f1( S() );
  f2( S() );
}

// { dg-final { scan-assembler "_Z2f1I1SENDtfp_E4typeET_" } }
// { dg-final { scan-assembler "_Z2f2I1SENDTcvT__EE4typeES1_" } }