blob: 437bf399057a8424a8fa8f7da39f61594f0f0fc1 [file] [log] [blame]
func use(_ x: Int) {}
func test() {
use(a!)
use(b) // expected-error {{use of unresolved identifier 'b'; did you mean 'a'?}}
}