Files
swift-mirror/test/TBD/function.swift
2017-04-18 11:33:54 -07:00

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) {}