mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This re-applies 90fcbfe9a6. I'll be committing
the corresponding change to Foundation momentarily.
9 lines
120 B
Swift
9 lines
120 B
Swift
|
|
@_transparent public func negate_bad(x: Int) -> Int {
|
|
return !x
|
|
}
|
|
|
|
public func negate(x: Int) -> Int {
|
|
return !x
|
|
}
|