mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
15 lines
483 B
Swift
15 lines
483 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: cp %s %t/main.swift
|
|
|
|
// -playground
|
|
// RUN: not %target-typecheck-verify-swift -swift-version 5 -playground %t/main.swift
|
|
// RUN: not %target-typecheck-verify-swift -swift-version 6 -playground %t/main.swift
|
|
|
|
// -pc-macro -playground
|
|
// RUN: not %target-typecheck-verify-swift -swift-version 5 -playground -pc-macro %t/main.swift
|
|
// RUN: not %target-typecheck-verify-swift -swift-version 6 -playground -pc-macro %t/main.swift
|
|
|
|
for x in y {
|
|
x
|
|
}
|