blob: 94e3d3ffd433428a5f5118e43b151233faf0cf3b [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)
{
}
}