Fix ConstantValue-related testData for loadJava tests
This commit is contained in:
+4
-4
@@ -3,12 +3,12 @@
|
||||
package test
|
||||
|
||||
public class PrivateClassMembers {
|
||||
private val v = 0
|
||||
private val v = { 0 }()
|
||||
|
||||
private var r = 0
|
||||
private var r = { 0 }()
|
||||
private set
|
||||
|
||||
private fun f() = 0
|
||||
private fun f() = { 0 }()
|
||||
|
||||
internal val internal = 0
|
||||
internal val internal = { 0 }()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user