mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
18 lines
278 B
D
18 lines
278 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail19687.d(17): Error: no property `nonexisting` for `""` of type `string`
|
|
---
|
|
*/
|
|
|
|
struct S
|
|
{
|
|
void opDispatch(string name)() {}
|
|
void opDispatch(string name)(string value) {}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
S n;
|
|
n.foo = "".nonexisting();
|
|
}
|