Files
swift-mirror/test/SILGen/Inputs/accessibility_vtables_other.swift
Jordan Rose 09b569c7ca Synthesize trivial accessors when overriding a property in another file.
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
2014-08-01 22:10:44 +00:00

6 lines
97 B
Swift

class InternalBase {
private func method() {}
private(set) var prop = 0
let constant = 1
}