aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/sizeof13.C
blob: 2f4a26e509d5b32a28c6ab4024d0bcdea89d0cba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// PR c++/42623
// We should choose f(B) because f(A<undef>) involves applying sizeof to
// an incomplete class, so it is removed by SFINAE.
// { dg-do link }

struct undef;

template <typename U, int N = sizeof(U)> struct A { A(int); };
template <typename U> void f(A<U>);

template <typename U> struct B { B(int) { } };
template <typename U> void f(B<U>) { }

int main()
{
  f<undef>(0);
}