blob: 454acc63149caf9b5be0c9b0199a72331f0e1dfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// PR c++/47125
template < bool, typename >
struct enable_if {};
template < typename T >
struct enable_if< true, T >
{
typedef T type;
};
template < typename T >
struct enable_if< true, T >::type
f( T x );
void
g( void )
{
f< int >( 0 ); // { dg-error "no match" }
}
// { dg-prune-output "note" }
|