Files
swift-mirror/test/SIL/Inputs/whole_module_optimization_helper.swift

8 lines
124 B
Swift

func compute(_ fn: () -> Int32) -> Int32 {
return fn() + privateFn()
}
private func privateFn() -> Int32 {
return 40
}