1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice10938.d(12): Error: no property 'opts' for type 'ice10938.C'
5 ---
6 */
7 
8 class C
9 {
this()10     this()
11     {
12         this.opts["opts"] = 1;
13     }
14 
15     auto opDispatch(string field : "opts")()
16     {
17         return this.opts;  // ICE -> compile time error
18     }
19 }
20 
main()21 void main()
22 {
23 }
24