I\'ve got a simple scenario in which I have a parent class, Person, which defines a property called \"name\" and includes a \"didSet\" observer...
class Pers
I got this error because I had two properties declared with the same name.
On Objective-C the compiler used to give the error on the line the property was declared. Something like "duplicate property".
Now on Swift you get "Ambiguous use of..." on the line that you use to property... and you have to look everywhere to find the duplicate property.