c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept44.C
blob78c9d12f2b71922b6a5b4b95d97a9f0fceac18ae
1 // PR c++/90490
2 // { dg-do compile { target c++11 } }
4 template <typename>
5 struct S {
6   void g() noexcept(decltype(int{ }) { }) {
7   }
8 };