Skip to content

Instantly share code, notes, and snippets.

@sforteln
Last active August 29, 2015 14:20
Show Gist options
  • Save sforteln/bfcf07581df0ab7282ba to your computer and use it in GitHub Desktop.
Save sforteln/bfcf07581df0ab7282ba to your computer and use it in GitHub Desktop.
protocol ProtocolA {
init()
}
class classA : ProtocolA {
required init() {
}
}
func create<T: ProtocolA>(T.Type) -> T? {
return T()
}
let foo = create(classA) //ok
let bar = create(String) //error "Cannot invoke 'create' with no arguments"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment