mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
192 B
Swift
13 lines
192 B
Swift
@inline(never) public func testNoinline(x x: Bool) -> Bool {
|
|
return x
|
|
}
|
|
|
|
public struct NoInlineInitStruct {
|
|
var x: Bool
|
|
|
|
@inline(never)
|
|
public init(x x2: Bool) {
|
|
self.x = x2
|
|
}
|
|
}
|