Files
swift-mirror/test/Serialization/Inputs/transparent_invalid.swift
Jordan Rose cf8baedee2 Re-apply "Rename @transparent to @_transparent for now."
This re-applies 90fcbfe9a6. I'll be committing
the corresponding change to Foundation momentarily.
2015-11-16 10:53:56 -08:00

9 lines
120 B
Swift

@_transparent public func negate_bad(x: Int) -> Int {
return !x
}
public func negate(x: Int) -> Int {
return !x
}