Files
swift-mirror/test/Serialization/Inputs/private_import_other_2.swift
2018-11-09 16:11:30 -08:00

12 lines
150 B
Swift

private struct Base {
private func member() {}
private func bar() {}
}
private struct Other {
}
extension Value {
fileprivate func foo() {}
}