Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / parse / error2.C
blobac7a14cb9dea5b58c2295028e2396a7a4415e151
1 // { dg-do compile }
2 // { dg-options "-fshow-column -std=c++98" }
3 // Properly print CALL_EXPRs while dumping expressions
5 double g;
6 int func(double);
8 template <int>
9 struct Foo {};
11 Foo<func(g)> f; // { dg-error "5:'int func.double.' cannot appear in a constant-expression" "func double" { target *-*-* } 11 }
12 // { dg-error "10:'g' cannot appear in a constant-expression" "g" { target *-*-* } 11 }
13 // { dg-error "11:a function call cannot appear in a constant-expression" "call" { target *-*-* } 11 }
14 // { dg-error "12:template argument 1 is invalid" "invalid template argument" { target *-*-* } 11 }