Sign in
gnu
/
gcc.git
/
refs/heads/trunk
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
diag9312.d
blob: 98308133e02d15421dc4657c8538ff224a1267a5 [
file
]
/*
TEST_OUTPUT:
---
fail_compilation/diag9312.d(10): Error: `with` expression types must be enums or aggregates or pointers to them, not `int`
---
*/
void
main
()
{
with
(
1
)
{
}
}