mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Otherwise, we don't actually consider the subclass's accessors to be overriding when we go to generate the vtable. <rdar://problem/17744228> Swift SVN r20923
6 lines
97 B
Swift
6 lines
97 B
Swift
class InternalBase {
|
|
private func method() {}
|
|
private(set) var prop = 0
|
|
let constant = 1
|
|
}
|