dmd/compiler/test/fail_compilation/fail9773.d
2023-11-13 00:40:35 +01:00

10 lines
230 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail9773.d(7): Error: cannot create default argument for `ref` / `out` parameter from expression `""` because it is not an lvalue
---
*/
void f(ref string a = "")
{
a = "crash and burn";
}