mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
150 B
Swift
12 lines
150 B
Swift
private struct Base {
|
|
private func member() {}
|
|
private func bar() {}
|
|
}
|
|
|
|
private struct Other {
|
|
}
|
|
|
|
extension Value {
|
|
fileprivate func foo() {}
|
|
}
|