mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
11 lines
318 B
Swift
11 lines
318 B
Swift
// RUN: %target-parse-verify-swift -I %S/Inputs/custom-modules
|
|
import APINotesTest
|
|
|
|
func testSwiftName() {
|
|
moveTo(x: 0, y: 0, z: 0)
|
|
moveTo(0, 0, 0) // expected-error{{missing argument labels 'x:y:z:' in call}}
|
|
|
|
_ = global
|
|
_ = ANTGlobalValue // expected-error{{use of unresolved identifier 'ANTGlobalValue'}}
|
|
}
|