Files
swift-mirror/test/refactoring/rename/Outputs/localEnum/north.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

10 lines
122 B
Plaintext

func boop() {
enum LocalEnum {
case <base>north</base>
case south
}
print(LocalEnum.<base>north</base>)
}