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

template<class T, decltype(T())> // #
struct A {};

A<int, 0> a;

int main() {}