PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept32.C
blob9a435049599af64e80370d99393d698f08a44a80
1 // PR c++/84045
2 // { dg-do compile { target c++11 } }
4 template <typename T> struct K {
5   static const bool d = true;
6 };
7 template <typename T, typename> struct B {
8   typedef K<T> D;
9   void foo () noexcept (D::d);
11 template <typename T> struct P {
12   P () noexcept (K<T>::d);
14 P<int> p;