mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
8 lines
138 B
Kotlin
8 lines
138 B
Kotlin
// NEXT_SIBLING:
|
|
fun foo(a: Int): Int {
|
|
class A {
|
|
fun bar(): Int = a + 10
|
|
}
|
|
|
|
return <selection>A().bar()</selection>
|
|
} |