KT-1822 Error 'cannot infer visibility' required

#KT-1822 fixed
This commit is contained in:
Svetlana Isakova
2012-04-19 16:01:46 +04:00
parent 558d1a0e2f
commit d245a10d02
5 changed files with 64 additions and 15 deletions
@@ -36,5 +36,5 @@ class F : C(), T {
}
class G : C(), T {
override fun foo() {}
public override fun foo() {}
}
@@ -0,0 +1,30 @@
//KT-1822 Error 'cannot infer visibility' required
package kt1822
open class C {
internal open fun foo() {}
}
trait T {
protected fun foo() {}
}
class G : C(), T {
<!CANNOT_INFER_VISIBILITY!>override<!> fun foo() {} //should be an error "cannot infer visibility"; for now 'public' is inferred in such cases
}
open class A {
internal open fun foo() {}
}
trait B {
protected fun foo() {}
}
trait D {
public fun foo() {}
}
class E : A(), B, D {
override fun foo() {}
}