mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
It is a maintenance burden and having the legacy driver exist in a simplified state reduces the possibility of things going wrong and hitting old bugs.
16 lines
509 B
Swift
16 lines
509 B
Swift
// RUN: not %target-build-swift %S/Inputs/error.swift %s 2>&1 | %FileCheck %s
|
|
// RUN: not %target-build-swift -continue-building-after-errors %S/Inputs/error.swift %s 2>&1 | %FileCheck -check-prefix=CHECK-CONTINUE %s
|
|
|
|
// CHECK: self.bar = self.bar
|
|
// CHECK-NOT: self.baz = self.baz
|
|
// CHECK-CONTINUE: self.bar = self.bar
|
|
// CHECK-CONTINUE: self.baz = self.baz
|
|
// CHECK-BATCH-DAG: self.bar = self.bar
|
|
// CHECK-BATCH-DAG: self.baz = self.baz
|
|
struct Bar {
|
|
let baz: Int
|
|
init() {
|
|
self.baz = self.baz
|
|
}
|
|
}
|