Files
kotlin-fork/idea/testData/refactoring/rename/inplace/LocalFunRedeclaration.kt
T
Alexey Sedunov 6c17bbe42c Rename: Check redeclaration for local variables
Also add tests for other local declarations

 #KT-13255 Fixed
2018-03-06 15:15:42 +03:00

5 lines
168 B
Kotlin
Vendored

// SHOULD_FAIL_WITH: Function 'localFunB' is already declared in function 'containNames'
fun containNames() {
fun <caret>localFunA() = 11
fun localFunB() = 12
}