[FIR] Fix CliTestGenerated$Jvm.testFirError

This commit is contained in:
Nick
2020-08-07 13:25:54 +03:00
parent 9ca4717d11
commit 6c0abe7e48
2 changed files with 16 additions and 13 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
compiler/testData/cli/jvm/firError.kt:5:13: error: x must be initialized before access
println(x)
^
compiler/testData/cli/jvm/firError.kt:10:16: error: public subclass exposes its private supertype Private
compiler/testData/cli/jvm/firError.kt:10:16: error: public subclass exposes its private supertype 'Private'
class Public : Private() {
^
compiler/testData/cli/jvm/firError.kt:11:9: error: public property exposes its private type Private
compiler/testData/cli/jvm/firError.kt:11:9: error: public property exposes its private type 'Private'
val x: Private
^
COMPILATION_ERROR