blob: c1a8b149f1557fa01e48b9944185041007053ca6 [file] [log] [blame]
protocol Fooable {
associatedtype AssocType
func foo(x : AssocType)
}
struct X : Fooable {
func foo(x: Float) {}
}
struct Y : Fooable {
func foo(x: String) {}
}