mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Deprecated 'INSTANCE$' replaced with 'INSTANCE'
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
public class B {
|
||||
public static int a = A.INSTANCE$.getC();
|
||||
public static int b = A.INSTANCE$.foo();
|
||||
public static int a = A.INSTANCE.getC();
|
||||
public static int b = A.INSTANCE.foo();
|
||||
}
|
||||
Reference in New Issue
Block a user