Files
kotlin-fork/compiler/testData/lazyResolve/namespaceComparator/objectInClass.txt
T
Pavel V. Talanov e6e6f7e598 Object's constructor is private from frontend point of view.
Test data changed.
Js-backend test objectInObject turned off.
Public constructors for objects hard-coded in jvm-backend.
2012-08-29 15:58:27 +04:00

11 lines
322 B
Plaintext

namespace test
internal final class test.A : jet.Any {
public final /*constructor*/ fun <init>(): test.A
internal final val B: test.A.B
internal final object test.A.B : jet.Any {
private final /*constructor*/ fun <init>(): test.A.B
internal final fun foo(/*0*/ a: jet.Int): jet.String
}
}