Avatar
class Foo { init<A>(a: A) { } } class Bar: Foo { override init<A: Sequence>(a: A) { super.init(a: a) } } (edited)