Files
swift-mirror/test/SILGen/Inputs/mangling_private_helper.swift

10 lines
238 B
Swift

open class Base {
fileprivate func privateMethod() {}
}
// Demonstrate the need for a vtable entry for privateMethod().
// This isn't strictly necessary.
private class Subclass : Base {
override fileprivate func privateMethod() {}
}