Files
swift-mirror/test/refactoring/rename/Outputs/enum/second.swift.expected
Alex Hoppen 5ed83ff616 [SourceKit] Update tests to use find-local-rename-ranges instead of invoking the local rename refactoring action
The local rename refactoring action will be removed in a follow-up commit.
2023-11-15 11:20:26 -08:00

13 lines
178 B
Plaintext

enum Foo {
case first(associated: Int)
case <base>second</base>
}
func test() {
let _ = Foo.first(associated: 1)
let _ = Foo.first
let _ = Foo.<base>second</base>
}