summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/decltype27.C
blob: cb962ada525e028e948d33a8cab672cbde932d00 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/48617
// { dg-options -std=c++0x }

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

A<int, 0> a;

int main() {}