mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
7 lines
182 B
D
7 lines
182 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail7603b.d(7): Error: cannot create default argument for `ref` / `out` parameter from constant `true`
|
|
---
|
|
*/
|
|
void test(out bool val = true) { }
|