mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
12 lines
180 B
Kotlin
Vendored
12 lines
180 B
Kotlin
Vendored
// FALSE
|
|
|
|
abstract class S(val f: () -> Unit)
|
|
|
|
fun foo(s: String, f: () -> Unit) {}
|
|
|
|
class ST : S(
|
|
{
|
|
foo("a <caret>test calculator") {
|
|
|
|
}
|
|
}) |