Added test for nested class

This commit is contained in:
Valentin Kipyatkov
2016-01-19 16:05:34 +03:00
parent 2791d99f9d
commit 38d374d4b9
3 changed files with 35 additions and 0 deletions
@@ -0,0 +1,10 @@
package a
import a.A.Nested as X
interface A {
class Nested
val a: Nested
val b: X
}