3b3fd0fa0d
The size has increased due to new implementation of KClass
10 lines
124 B
Kotlin
Vendored
10 lines
124 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1114
|
|
package foo
|
|
|
|
class Test() {
|
|
}
|
|
|
|
fun box(): String {
|
|
var test = Test()
|
|
return "OK"
|
|
} |