]> gitweb.factorcode.org Git - factor.git/blob - basis/compiler/tests/generic.factor
6b0ef2d4393d859b8107c1747071c3ab831cb947
[factor.git] / basis / compiler / tests / generic.factor
1 IN: compiler.tests.generic
2 USING: tools.test math kernel compiler.units definitions ;
3
4 GENERIC: bad ( -- )
5 M: integer bad ;
6 M: object bad ;
7
8 [ 0 bad ] must-fail
9 [ "" bad ] must-fail
10
11 [ ] [ [ \ bad forget ] with-compilation-unit ] unit-test