Files
swift-mirror/test/Serialization/Inputs/def_noinline.swift
Arnold Schwaighofer cd799f8e46 Revert "Add an inline(late) attribute"
This reverts commit r21286.

Discussions ongoing.

Swift SVN r21289
2014-08-19 18:15:25 +00:00

13 lines
191 B
Swift

@inline(never) public func testNoinline(#x: Bool) -> Bool {
return x
}
public struct NoInlineInitStruct {
var x: Bool
@inline(never)
public init(x x2: Bool) {
self.x = x2
}
}