Skip to content

Instantly share code, notes, and snippets.

@el-hoshino
Created February 16, 2018 14:17
Show Gist options
  • Save el-hoshino/708980d8a95c37593a8c71755cd481a2 to your computer and use it in GitHub Desktop.
Save el-hoshino/708980d8a95c37593a8c71755cd481a2 to your computer and use it in GitHub Desktop.
πŸ€” #swift #CodePiece
protocol TestProtocol {
associatedtype Element
}
struct TestStruct<Element>: TestProtocol {
let element: Element
}
// error: type 'TestStruct<Element>' does not conform to protocol 'TestProtocol'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment