mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
187 B
D
8 lines
187 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail_contracts4.d(8): Error: missing `do { ... }` for function literal
|
|
---
|
|
*/
|
|
|
|
enum x = delegate int()in(true) out(;true) out(r; true) in{} out(r){};
|