blob: 2b3eab52ea3fe262950869b33d99d294e199ed72 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice10938.d(12): Error: no property 'opts' for type 'ice10938.C'
---
*/
class C
{
this()
{
this.opts["opts"] = 1;
}
auto opDispatch(string field : "opts")()
{
return this.opts; // ICE -> compile time error
}
}
void main()
{
}