mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
The "Tool" abstraction wasn't buying us enough to deserve the added complexity. Now a ToolChain turns Actions into Jobs, and every helper tool is searched for relative to Swift first. Much simpler. Swift SVN r31563
9 lines
328 B
Swift
9 lines
328 B
Swift
// RUN: not %swiftc_driver -emit-executable -o %t.exe %s -Xfrontend -debug-assert-immediately 2>&1 | FileCheck %s
|
|
// RUN: not %swiftc_driver -emit-executable -o %t.exe %s -Xfrontend -debug-assert-after-parse 2>&1 | FileCheck %s
|
|
|
|
// REQUIRES: asserts
|
|
|
|
// CHECK: error: compile command failed due to signal
|
|
|
|
print("Hello, World")
|