mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This means moving the output path into SupplementaryOutputPaths, and using the same sort of diagnostic dispatching that serialized diagnostics use. This is part of what's needed to run the migrator in batch mode.
11 lines
85 B
Swift
11 lines
85 B
Swift
enum E2 {
|
|
case x
|
|
case y
|
|
case z
|
|
}
|
|
|
|
func fooHelper(_ e: E2) {
|
|
switch e {
|
|
}
|
|
}
|