Skip to content

Instantly share code, notes, and snippets.

@Pretz
Created February 23, 2015 22:38
Show Gist options
  • Save Pretz/308f26e2ad3afeb36aa9 to your computer and use it in GitHub Desktop.
Save Pretz/308f26e2ad3afeb36aa9 to your computer and use it in GitHub Desktop.
Swift 1.2 override
import Foundation
class Something: NSObject {
func fun(string: String) {
println(string)
}
// error: method 'fun' redeclares Objective-C method 'fun:'
func fun(int: Int) {
println(int)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment