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 bdde75a6a3
commit 2961301297
18 changed files with 184 additions and 45 deletions

View File

@@ -0,0 +1,9 @@
public interface PrivateInTrait {
final class DefaultImpls {
private static java.lang.String getNn(PrivateInTrait $this) { /* compiled code */ }
private static void setNn(PrivateInTrait $this, java.lang.String value) { /* compiled code */ }
private static java.lang.String getN(PrivateInTrait $this) { /* compiled code */ }
}
}