1 // { dg-options -std=c++0x }
2 
3 struct IsLiteral {};
4 
5 constexpr auto ab = IsLiteral();
6 
bar(IsLiteral x)7 constexpr IsLiteral bar(IsLiteral x) { return x; }
8 
9 constexpr auto xy = bar(ab);
10