1 // N3638: decltype(auto) must stand alone 2 // { dg-do compile { target c++14 } } 3 4 void f(); g1()5 decltype(auto) g1() { return &f; } decltype(auto)6 decltype(auto)* g2() { return f; } // { dg-error "decltype.auto" } 7