Avatar
struct S<T> { func f() where T == Int { } // ^ 'where' clause cannot be attached to a non-generic declaration }
3:24 AM
↑の例だとSのパラメータTについてはfuncのところでは書けない。func fのパラメータ<X>だったら書ける。 (edited)