blob: 41c136090b03f9a6aa7ea88a4fe31f641bda813c [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag9312.d(10): Error: with expressions must be aggregate types or pointers to them, not `int`
---
*/
void main()
{
with (1)
{
}
}