mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
8 lines
181 B
D
8 lines
181 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail_contracts1.d(8): Error: `(identifier) { ... }` or `(identifier; expression)` following `out` expected, not `)`
|
|
---
|
|
*/
|
|
|
|
void foo() out()){}
|