mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
7 lines
214 B
Swift
7 lines
214 B
Swift
// RUN: %swift %s -parse-as-library -verify
|
|
|
|
print(10) // expected-error {{expressions are not allowed at the top level}}
|
|
if (true) { // expected-error {{statments are not allowed at the top level}}
|
|
print(10)
|
|
}
|