Idea tests: INSTANCE$ -> INSTANCE

This commit is contained in:
Pavel V. Talanov
2015-10-07 16:05:05 +03:00
committed by Michael Bogdanov
parent 7fe71d21f3
commit c28107034a
37 changed files with 38 additions and 38 deletions
@@ -4,6 +4,6 @@ import library.*
class J {
static void test() {
O o = O.INSTANCE$;
O o = O.INSTANCE;
}
}
@@ -1,4 +1,4 @@
[LibraryObjectUsages.0.kt] Value read (10: 13) val o = O
[LibraryObjectUsages.1.java] Class static member access (7: 15) O o = O.INSTANCE$;
[LibraryObjectUsages.1.java] Local variable declaration (7: 9) O o = O.INSTANCE$;
[LibraryObjectUsages.1.java] Class static member access (7: 15) O o = O.INSTANCE;
[LibraryObjectUsages.1.java] Local variable declaration (7: 9) O o = O.INSTANCE;
[library.kt] Value read (55: 13) val o = O