PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / ref4.C
blob6d89fa80a8413ac0a586ab0afa97b663a4bba642
1 // PR c++/41972
3 struct X {
4   static const double  x;
5 };
6 template <const double& _test_>
7   class Foo { };
8 template <typename _ignore_>
9 struct Y {
10   typedef Foo<X::x> type;