// { dg-do compile } // { dg-options "" } // Origin: Wolfgang Bangerth // PR c++/9459: typeof in return type of template function void foo (int) {} void foo (double) {} template typeof(foo(1)) bar () { return foo(1); }