mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
13 lines
185 B
Swift
13 lines
185 B
Swift
|
|
public typealias Int = Builtin.Int32
|
|
|
|
public struct Container<V> {
|
|
@_inlineable
|
|
@inline(never)
|
|
public func doSomething() {}
|
|
@_inlineable
|
|
@inline(never)
|
|
public init() {}
|
|
}
|
|
|