// { dg-do compile { target c++11 } }template<class T>constexpr inline T bar(T x) {return x; }templateshortbar(short x);// #EIconstexpr auto yz =bar(0);// OKconstexpr auto ab =bar(short());// #1 Error, but should be OKconstexpr auto mn =bar(short{});// #2 Error, but should be OK