mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This is unfortunate in that it makes the linker do extra work, but in practice it probably doesn't matter much, and meanwhile it handles all our problems with @inlinable. Alternate solution to rdar://problem/39338239
9 lines
187 B
Swift
9 lines
187 B
Swift
@_exported import autolinking_public
|
|
import autolinking_other
|
|
import autolinking_indirect
|
|
import autolinking_private
|
|
|
|
public func bfunc(x: Int = afunc(), y: Int = afunc2()) {
|
|
cfunc()
|
|
}
|