Files
swift-mirror/test/FixCode/Inputs/batch-mode-helper.swift
Jordan Rose 41286bc676 Make JSON fix-it outputs be per-primary in batch mode. (#14995)
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.
2018-03-09 11:58:54 -08:00

11 lines
85 B
Swift

enum E2 {
case x
case y
case z
}
func fooHelper(_ e: E2) {
switch e {
}
}