Decrease visibility fix is now active for exposed visibility errors #KT-11920 Fixed

This commit is contained in:
Mikhail Glukhikh
2016-04-18 19:25:13 +03:00
committed by Mikhail Glukhikh
parent 934c374030
commit d5b9a336a3
23 changed files with 286 additions and 26 deletions

View File

@@ -0,0 +1,11 @@
// "Make Derived internal" "true"
import Outer.Base
internal class Outer {
interface Base
}
class Container {
interface Derived : <caret>Base
}