libstdc++: [_Hashtable] Fix some implementation inconsistencies
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / noexcept60.C
blobd8efe1a24cb49c840b09498787cf42e4fab7579d
1 // PR c++/95562
2 // { dg-do compile { target c++11 } }
4 template <bool Nothrow>
5 struct Functions
7   void (*func)(void*) noexcept(Nothrow);
8 };
10 void test()
12   Functions<true> f{};