mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
18 lines
174 B
Swift
18 lines
174 B
Swift
|
|
import Swift
|
|
|
|
@_silgen_name("test_target")
|
|
@inline(never)
|
|
public func foo3() {
|
|
}
|
|
|
|
public func foo1() {
|
|
print("1")
|
|
}
|
|
|
|
public func foo2() {
|
|
print("3")
|
|
foo1()
|
|
foo3()
|
|
}
|