6 lines
132 B
Kotlin
Vendored
6 lines
132 B
Kotlin
Vendored
// "Create class 'Foo'" "true"
|
|
// ERROR: No value passed for parameter 'n'
|
|
|
|
open class A(n: Int)
|
|
|
|
fun test(): A = <caret>Foo(2, "2") |