On Thursday, 15 September 2022 at 14:10:07 UTC, bauss wrote: > > ``` > Foo foo = 100; // Would trigger static void opImplCast(T)(T > value) where T is int. > ``` Minor typo here, it should be: ``` Foo foo = 100; // Would trigger static Foo opImplCast(T)(T value) where T is int. ```