LightClassTest: test corner cases related to inherited visiblity

EA-99155
 #KT-16899 Fixed
This commit is contained in:
Pavel V. Talanov
2017-03-24 15:08:15 +03:00
parent 4b85fd9fbe
commit a81bac0b50
18 changed files with 184 additions and 45 deletions
@@ -0,0 +1,13 @@
// p.C
package p
class C : A() {
override val ap: Int
get() = super.c
override fun af(): Int {
return super.foo()
}
}
// LAZINESS:NoLaziness