Remove unjustified assertions

This commit is contained in:
Alexey Sedunov
2013-12-23 18:08:18 +04:00
parent 6a9c535129
commit fbb03afc0f
20 changed files with 341 additions and 29 deletions
@@ -0,0 +1,15 @@
<node text="A ()" base="true">
<node text="B ()">
<node text="C ()">
<node text="O3 ()"/>
</node>
<node text="O2 ()"/>
</node>
<node text="T ()">
<node text="U ()">
<node text="O5 ()"/>
</node>
<node text="O4 ()"/>
</node>
<node text="O1 ()"/>
</node>
@@ -0,0 +1,19 @@
open class <caret>A
open class B: A()
trait T: A
open class C: B()
trait U: T
object O1: A()
object O2: B()
object O3: C()
object O4: T
object O5: U