blob: 5ab7abc79dabebacc7c7ec2a7dbb7b3ef99e6150 [file] [log] [blame]
public let x: Int = 0
internal let y: Int = 0
private let z: Int = 0
#if DEFINE_VAR_FOR_SCOPED_IMPORT
internal let zz: Int = 0
#endif
public struct Foo {
internal init() {}
public static func x() {}
internal static func y() {}
private static func z() {}
}
open class Base {
internal func method() {}
open internal(set) var value = 0
}
public class HiddenMethod {
internal func method() {}
}
public class HiddenType {
typealias TheType = Int
}
public struct OriginallyEmpty {}
public struct StructWithPrivateSetter {
public private(set) var x = 0
public init() {}
}
public protocol HasDefaultImplementation {}
extension HasDefaultImplementation {
internal func foo() {}
}
internal class InternalBase {}