aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/sfinae15.C
blob: d8b3228903023ece89f9fb15e657d7353ee32355 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// PR c++/48531
// { dg-do compile { target c++11 } }

template<class T,
  class = decltype(T())
>
char f(int);

template<class>
char (&f(...))[2];

static_assert(sizeof(f<int[]>(0)) != 1, "Error");