Files
swift-mirror/test/Driver/Inputs/error.swift
Brian Gesiak cc32f9376d [SR-2400] Add -continue-building-after-errors (#4437)
Currently the Swift driver stops invoking frontend commands as soon as one of
them reports an error. Add a flag to control this behavior, so that users can
choose whether to see all the errors at once or bail out early.
2016-08-22 08:43:03 -07:00

7 lines
69 B
Swift

struct Foo {
let bar: Int
init() {
self.bar = self.bar
}
}