Skip to content

Instantly share code, notes, and snippets.

@keremvatandas
Created February 16, 2019 12:51
Show Gist options
  • Save keremvatandas/9d59183172201e650522e137bfa4650f to your computer and use it in GitHub Desktop.
Save keremvatandas/9d59183172201e650522e137bfa4650f to your computer and use it in GitHub Desktop.
protocol P {
associatedtype T
func test(x: T) -> T
}
class Example : P {
func test(x: Example) -> Example
{
return x
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment