mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
13 lines
244 B
Swift
13 lines
244 B
Swift
|
|
public func foo(x: Int = 0) -> Int { x }
|
|
|
|
public struct Subscript1 {
|
|
public init() { }
|
|
public subscript(x: Int = 0) -> Int { x }
|
|
}
|
|
|
|
public struct Subscript2 {
|
|
public init() { }
|
|
public subscript(x: String = #function) -> String { x }
|
|
}
|