]> gitweb.factorcode.org Git - factor.git/blob - basis/compiler/tests/pic-problem-1.factor
Delete empty unit tests files, remove 1- and 1+, reorder IN: lines in a lot of places...
[factor.git] / basis / compiler / tests / pic-problem-1.factor
1 USING: kernel sequences prettyprint memory tools.test ;
2 IN: compiler.tests.pic-problem-1
3
4 TUPLE: x ;
5
6 M: x length drop 0 ;
7
8 INSTANCE: x sequence
9
10 << gc >>
11
12 CONSTANT: blah T{ x }
13
14 [ T{ x } ] [ blah ] unit-test