PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / bracket5.C
blob22ac5445c55334350e6e39e346c045a02a07390c
1 // { dg-options "-Wall" }
2 // { dg-do compile { target c++11 } }
4 template <int> struct X {};
5 template <typename> struct Y { static int const c = 0; };
6 int main() { return Y<X<1>>::c; }