mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
9 lines
471 B
Swift
9 lines
471 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 -parse 2>&1 | FileCheck %s -check-prefix=CHECK2
|
|
// RUN: not %swift -emit-sil 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
|