mirror of
https://github.com/apple/swift.git
synced 2026-06-27 12:25:55 +02:00
9 lines
124 B
Swift
9 lines
124 B
Swift
|
|
@_transparent public func negate_bad(_ x: Int) -> Int {
|
|
return !x
|
|
}
|
|
|
|
public func negate(_ x: Int) -> Int {
|
|
return !x
|
|
}
|