mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
12 lines
186 B
Swift
12 lines
186 B
Swift
public func function2() {}
|
|
|
|
public class Class2 {
|
|
public var property: Int
|
|
|
|
public init() {
|
|
property = 0
|
|
}
|
|
|
|
public static func staticFunc(default_: Int = 0) {}
|
|
}
|