blob: 18da406beaa9bae363161eccfb8cb190affd8639 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail9773.d(7): Error: "" is not an lvalue
---
*/
void f(ref string a = "")
{
a = "crash and burn";
}