blob: 647194938183b67bafc2942cf99f35404cf74f5a [file] [log] [blame]
// RUN: %target-swift-frontend -emit-ir -o- -parse-as-library -module-name test -validate-tbd-against-ir=all %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) {}