mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
8 lines
125 B
Kotlin
8 lines
125 B
Kotlin
// "Create class 'Foo'" "true"
|
|
// ERROR: Unresolved reference: Foo
|
|
|
|
open class A(val n: Int)
|
|
|
|
fun test(): A = J.Foo(2, "2")
|
|
|