mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
16 lines
213 B
Swift
16 lines
213 B
Swift
|
|
public struct X {
|
|
@_inlineable
|
|
public init() { }
|
|
}
|
|
|
|
@_inlineable
|
|
@inline(never)
|
|
public func the_thing<T>(t t : T) { }
|
|
|
|
@_inlineable
|
|
@inline(never)
|
|
public func the_thing_it_does(x x : X) {
|
|
the_thing(t: x)
|
|
}
|