1 // PR c++/51305
2 // { dg-options -std=c++0x }
3 
ok()4 constexpr bool ok() noexcept
5 {
6   typedef int type;
7   return true;
8 }
9 
10 constexpr auto x = ok();
11