'open' + 'private' and 'abstract' + 'private' are now incompatible for functions and properties #KT-9324 Fixed

This commit is contained in:
Mikhail Glukhikh
2015-09-28 13:29:06 +03:00
parent 7cf2840fe5
commit 4e91f2ffb7
7 changed files with 30 additions and 36 deletions
@@ -14,7 +14,7 @@ class C : A() {
//------------
open class D {
private open fun self() : D = this
<!INCOMPATIBLE_MODIFIERS!>private<!> <!INCOMPATIBLE_MODIFIERS!>open<!> fun self() : D = this
}
class E : D() {