mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
20 lines
340 B
Swift
20 lines
340 B
Swift
// RUN: %target-swift-ide-test -print-usrs -source-filename %s | %FileCheck %s -strict-whitespace
|
|
|
|
// CHECK: [[@LINE+1]]:6 s:14swift_ide_test11InvalidEnumO{{$}}
|
|
enum InvalidEnum {
|
|
case
|
|
}
|
|
|
|
func qualifiedModuleName() {
|
|
let a = Swift.Array<Int>()
|
|
|
|
_ = a
|
|
}
|
|
|
|
func amazingCode() {
|
|
let a = Swift
|
|
let b = (Swift, Swift)
|
|
|
|
_ = a, _ = b
|
|
}
|