mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01: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
|
|
}
|