blob: 69cd45033dbf8a7d5a8d16e880b5b88fc7e886ec [file] [log] [blame]
/// second_decl_class_1 Aaa.
public class second_decl_class_1 {
}
public struct second_decl_struct_1 {
public var instanceVar: Int {
get { return 1 }
set {}
}
public enum NestedEnum {}
public typealias NestedTypealias = Int
}
public enum second_decl_enum_1 {
case Case1
case Case2(Int)
}
public class second_decl_class_2 {
public init() {}
}
public protocol second_decl_protocol_1 {
associatedtype NestedTypealias
subscript(i: Int) -> Double { get set }
}
public var (decl_var_2, decl_var_3): (Int, Float) = (1, 1.0)
#sourceLocation(file:"NonExistingSource.swift", line:100000)
public func functionAfterPoundSourceLoc() {}