fix tests in org.jetbrains.kotlin.checkers

This commit is contained in:
Michael Nedzelsky
2015-09-03 15:25:57 +03:00
parent a3f22939f1
commit bc5c9065d2
2821 changed files with 12932 additions and 12960 deletions
@@ -1,8 +1,8 @@
// !DIAGNOSTICS: -UNUSED_EXPRESSION -UNUSED_PARAMETER -UNUSED_VARIABLE -NOTHING_TO_INLINE
public class Z {
val privateProperty = 11;
internal val privateProperty = 11;
fun privateFun() {
internal fun privateFun() {
}
}
@@ -12,7 +12,7 @@ public inline fun test() {
Z().<!INVISIBLE_MEMBER_FROM_INLINE!>privateFun<!>()
}
inline fun testInternal() {
internal inline fun testInternal() {
Z().privateProperty
Z().privateFun()
}
@@ -30,7 +30,7 @@ public class Z2 {
<!INVISIBLE_MEMBER_FROM_INLINE!>privateFun<!>()
}
inline fun testInternal() {
internal inline fun testInternal() {
privateProperty
privateFun()
}