mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This dates back to the early days when the Driver was still being brought up, but there's no reason to put them together now. Reorganization and elimination of redundancy only.
10 lines
569 B
Swift
10 lines
569 B
Swift
// RUN: not %swift 2>&1 | %FileCheck %s -check-prefix=CHECK1
|
|
// RUN: not %swift %s 2>&1 | %FileCheck %s -check-prefix=CHECK1
|
|
// RUN: not %swift -typecheck 2>&1 | %FileCheck %s -check-prefix=CHECK2
|
|
// RUN: not %swift -emit-sil 2>&1 | %FileCheck %s -check-prefix=CHECK2
|
|
// RUN: not %swift -emit-sil -parse-as-library 2>&1 | %FileCheck %s -check-prefix=CHECK2
|
|
// RUN: not %swift -emit-object 2>&1 | %FileCheck %s -check-prefix=CHECK2
|
|
|
|
// CHECK1: <unknown>:0: error: no frontend action was selected
|
|
// CHECK2: <unknown>:0: error: this mode requires at least one input file
|