xamarin / binding-tools-for-swift

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Protocols that have generics with associated types don't work

stephen-hawley opened this issue · comments

This code generates all kinds of errors:

public protocol MyIterator {
	associatedtype Element
	func next () -> Self.Element?
}