mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
343 B
Plaintext
14 lines
343 B
Plaintext
// RUN: not %swift -typecheck -target %target-triple %s %S/Inputs/fixits-enum-multifile.swift -emit-fixits-path %t.remap -I %S/Inputs -diagnostics-editor-mode
|
|
// RUN: c-arcmt-test %t.remap | arcmt-test -verify-transformed-files %s.result
|
|
|
|
func foo1(_ e: EMulti) {
|
|
switch e {
|
|
case .e1:
|
|
<#code#>
|
|
case .e2:
|
|
<#code#>
|
|
case .e3(_):
|
|
<#code#>
|
|
}
|
|
}
|