changeset 424 | daf561a83ba6 |
parent 390 | 175a950470a9 |
child 463 | 0315d9983cd0 |
423:e9d14d58be3c | 424:daf561a83ba6 |
---|---|
1 import M3._ |
|
2 |
|
3 |
|
4 assert(flts(Nil) == Nil) |
|
5 assert(flts(ZERO::ZERO::Nil) == Nil) |
|
6 assert(flts(ZERO::ONE::ZERO::ONE::Nil) == List(ONE, ONE)) |
|
7 assert(flts(ONE::ALTs(List(ONE))::ONE::Nil) == List(ONE, ONE, ONE)) |
|
8 assert(flts(ONE::ALTs(List(ONE))::ONE::ALTs(List(ONE))::Nil) == List(ONE, ONE, ONE, ONE)) |