blob: 4c2a3cb3e6076c71737690b13c76f0a2957b0c60 [file] [log] [blame]
// PR c++/67041
// { dg-do compile { target c++14 } }
template<typename T>
auto test = [](){
return T{};
};
int main() {
test<int>();
}