blob: e9bbc735b4da77f06751c4261491e3ad502d90a2 [file] [log] [blame]
// PR c++/60314
// { dg-do compile { target c++14 } }
// { dg-options "-g" }
// fine
decltype(auto) qux() { return 42; }
struct foo
{
// also ICEs if not static
static decltype(auto) bar()
{ return 42; }
};