d: Merge upstream dmd ff57fec515, druntime ff57fec515, phobos 17bafda79.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail9773.d
blob26447a73914e1f70e628f58233967ccf28e38e18
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail9773.d(7): Error: cannot create default argument for `ref` / `out` parameter from expression `""` because it is not an lvalue
5 ---
6 */
7 void f(ref string a = "")
9 a = "crash and burn";