bd38363077
To explicitly specify which test are failing
10 lines
143 B
Kotlin
Vendored
10 lines
143 B
Kotlin
Vendored
// "Remove useless cast" "true"
|
|
class A {
|
|
fun foo() {}
|
|
}
|
|
|
|
fun test() {
|
|
A().foo()
|
|
({ "" } as<caret> () -> String)
|
|
}
|
|
/* IGNORE_FIR */ |