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