11 lines
206 B
Kotlin
Vendored
11 lines
206 B
Kotlin
Vendored
package org.test
|
|
|
|
class Class {
|
|
fun method() {
|
|
@java.lang.Deprecated fun localFunctionInsideMethod() {}
|
|
}
|
|
}
|
|
|
|
fun function() {
|
|
@java.lang.Deprecated fun localFunctionInsideFunction() {}
|
|
} |