Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / const3.C
blob5ef27315a51b862449d9374029de846ddaac07e3
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin PR c++/42251
3 // { dg-do "compile" }
5 struct foo
7     static const bool b = false;
8 };
10 template<bool x>
11 struct S1
15 template<bool x>
16 struct S2
17     : S1<foo::b>