Files
swift-mirror/test/Serialization/Inputs/top-level-code-other.swift

6 lines
112 B
Swift

func use(_ x: Int) {}
func test() {
use(a!)
use(b) // expected-error {{use of unresolved identifier 'b'}}
}