blob: 9fbbebfd932d83a408e00958b0e38a3639e121d1 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag8684.d(12): Error: found `;` when expecting `)`
fail_compilation/diag8684.d(13): Error: semicolon needed to end declaration of `x`, instead of `for`
fail_compilation/diag8684.d(12): `x` declared here
---
*/
int foo(int n, int m)
{
int x = foo( 5, m;
for (int q=0; q<10; ++q){
++q;
}
return 2;
}