blob: 7d1c6e516e1b4cd21c4ab5bfee58da37ed5b1f32 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail19687.d(17): Error: no property `nonexisting` for type `string`
---
*/
struct S
{
void opDispatch(string name)() {}
void opDispatch(string name)(string value) {}
}
void main()
{
S n;
n.foo = "".nonexisting();
}