mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Also, if warning about an accessor that comes from a stored property, point to the property rather than the (implicit, source-location-less) accessor decl. Both of these changes are aimed at improving the presentation in Xcode. rdar://problem/19927828 Swift SVN r25725
5 lines
90 B
Swift
5 lines
90 B
Swift
class Super1 {
|
|
@objc(a)
|
|
func f() { } // expected-note{{method 'f()' declared here}}
|
|
}
|