Add inner classes to duplicateLibraries test

This commit is contained in:
Alexander Udalov
2013-08-28 20:56:17 +04:00
parent 31a13dc688
commit 7e704832ed
5 changed files with 14 additions and 2 deletions
@@ -3,3 +3,7 @@ package test
import testing.* import testing.*
val testObjectProperty = TopLevelObject val testObjectProperty = TopLevelObject
val outer = Outer()
val inn3r = Outer().Inner()
val nested = Outer.Nested()
@@ -1,3 +1,6 @@
package test package test
internal val inn3r: testing.Outer.Inner
internal val nested: testing.Outer.Nested
internal val outer: testing.Outer
internal val testObjectProperty: testing.TopLevelObject internal val testObjectProperty: testing.TopLevelObject
@@ -1,3 +1,8 @@
package testing package testing
object TopLevelObject object TopLevelObject
class Outer {
inner class Inner
class Nested
}