mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
13 lines
192 B
D
13 lines
192 B
D
/*
|
|
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)
|
|
{
|
|
}
|
|
}
|