PACKAGE_VISIBILITY normalization chaged to PROTECTED

This commit is contained in:
Michael Bogdanov
2015-10-06 12:24:25 +03:00
parent 882f6113dc
commit 264d7da450
8 changed files with 24 additions and 24 deletions
@@ -7,5 +7,5 @@ public open class Base {
public final class Derived : test.Base {
public constructor Derived()
internal open override /*1*/ fun foo(): kotlin.Unit
protected open override /*1*/ fun foo(): kotlin.Unit
}