Make declarations from the current package be resolved before declarations in default package (EA-43715)

This commit is contained in:
Nikolay Krasko
2013-04-26 12:17:05 +04:00
parent 0c749005e1
commit 31edd6f440
4 changed files with 25 additions and 1 deletions
@@ -0,0 +1,9 @@
package test
internal open class Base {
/*primary*/ public constructor Base()
}
internal final class SubBase : test.Base {
/*primary*/ public constructor SubBase()
}