Avatar
omochimetaru 4/1/2018 3:44 PM
@swiftbot protocol A {} protocol B : A {} protocol C : B {} struct S {} extension S : C {} print(S.self is A.Type) print(S.self is B.Type) print(S.self is C.Type)