1 // { dg-do compile } 2 // Properly print CALL_EXPRs while dumping expressions 3 4 double g; 5 int func(double); 6 7 template <int> 8 struct Foo {}; 9 10 Foo<func(g)> f; // { dg-error "" "func(g)" } 11