Guest User

Untitled

a guest
Feb 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. protocol P {
  2. associatedtype T
  3.  
  4. func test(x: T) -> T
  5. }
  6.  
  7. class Example : P {
  8.  
  9. func test(x: Example) -> Example
  10. {
  11. return x
  12. }
  13. }
Add Comment
Please, Sign In to add comment