6c17bbe42c
Also add tests for other local declarations #KT-13255 Fixed
5 lines
168 B
Kotlin
Vendored
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
|
|
} |