mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
17 lines
437 B
Swift
17 lines
437 B
Swift
// RUN: %target-run-simple-swift(-enable-experimental-feature Embedded -parse-as-library -runtime-compatibility-version none -wmo) | %FileCheck %s
|
|
|
|
// REQUIRES: swift_in_compiler
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: optimized_stdlib
|
|
// REQUIRES: OS=macosx || OS=linux-gnu
|
|
|
|
@main
|
|
struct Main {
|
|
static func main() {
|
|
let str = "Hello Hello This Is A Long String"
|
|
print(str)
|
|
}
|
|
}
|
|
|
|
// CHECK: Hello Hello This Is A Long String
|