Protected in allowed in companion objects but forbidden in other objects, relevant test fixes

This commit is contained in:
Mikhail Glukhikh
2015-11-20 15:34:56 +03:00
parent fdc7c75f5b
commit f81a5c06ea
9 changed files with 19 additions and 17 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ package test
const private val topLevel = 1
object A {
const protected val inObject = 2
const internal val inObject = 2
}
class B {
+2 -2
View File
@@ -5,8 +5,8 @@ private const val topLevel: kotlin.Int = 1
public object A {
/*primary*/ private constructor A()
protected const final val inObject: kotlin.Int = 2
protected final fun <get-inObject>(): kotlin.Int
internal const final val inObject: kotlin.Int = 2
internal final fun <get-inObject>(): kotlin.Int
}
public final class B {