41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
18 lines
351 B
Kotlin
18 lines
351 B
Kotlin
package test
|
|
|
|
public trait FunDependencyEdge {
|
|
val from: FunctionNode
|
|
}
|
|
|
|
public trait FunctionNode
|
|
|
|
public class FunctionNodeImpl : FunctionNode
|
|
|
|
class FunDependencyEdgeImpl(override val from: FunctionNodeImpl): FunDependencyEdge {
|
|
}
|
|
|
|
fun box(): String {
|
|
(FunDependencyEdgeImpl(FunctionNodeImpl()) as FunDependencyEdge).from
|
|
return "OK"
|
|
}
|