April 01, 2021
https://issues.dlang.org/show_bug.cgi?id=21787

Manfred Nowak <svv1999@hotmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement

--- Comment #1 from Manfred Nowak <svv1999@hotmail.com> ---
Specs.20.8|1 require `opIndex` to be a method. Therefore this is not a bug, but an enhancement.

Although that requirement can be satisfied by declaring

  class C{
    bool delegate( int) opIndexVar;
    bool opIndex( int arg){
      return opIndexVar( arg);
    }
  }

the result would be an additional call unless the machine code generator optimizes that call away.

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=21787

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P4

--