fix tests in org.jetbrains.kotlin.renderer

This commit is contained in:
Michael Nedzelsky
2015-09-04 19:45:46 +03:00
parent aa8c90893e
commit b9906f842d
12 changed files with 71 additions and 71 deletions
+2 -2
View File
@@ -10,12 +10,12 @@ trait A2 private constructor(private val prop: Int) {
}
}
//internal interface A1 defined in root package
//public interface A1 defined in root package
//public constructor A1() defined in A1
//public constructor A1(x: kotlin.Int = ..., y: kotlin.Int) defined in A1
//value-parameter val x: kotlin.Int = ... defined in A1.<init>
//value-parameter val y: kotlin.Int defined in A1.<init>
//internal interface A2 defined in root package
//public interface A2 defined in root package
//private constructor A2(prop: kotlin.Int) defined in A2
//value-parameter val prop: kotlin.Int defined in A2.<init>
//public constructor A2(x: kotlin.Int = ..., y: kotlin.Int) defined in A2