blob: 4db1c86c8d90432abd76ce1938c249067297ab17 [file] [log] [blame]
// N3638: decltype(auto) must stand alone
// { dg-do compile { target c++14 } }
void f();
decltype(auto) g1() { return &f; }
decltype(auto)* g2() { return f; } // { dg-error "decltype.auto" }