mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
11 lines
351 B
Swift
11 lines
351 B
Swift
// RUN: %target-swift-frontend -emit-ir -o- -parse-as-library -module-name test -validate-tbd-against-ir %s
|
|
|
|
public func publicNoArgs() {}
|
|
public func publicSomeArgs(_: Int, x: Int) {}
|
|
|
|
internal func internalNoArgs() {}
|
|
internal func internalSomeArgs(_: Int, x: Int) {}
|
|
|
|
private func privateNoArgs() {}
|
|
private func privateSomeArgs(_: Int, x: Int) {}
|