2008-08-27 17:25:37 -04:00
|
|
|
IN: compiler.tests
|
|
|
|
USING: io.streams.string kernel tools.test eval ;
|
|
|
|
|
|
|
|
: declaration-test-1 ( -- a ) 3 ; flushable
|
|
|
|
|
|
|
|
: declaration-test ( -- ) declaration-test-1 drop ;
|
|
|
|
|
|
|
|
[ "" ] [ [ declaration-test ] with-string-writer ] unit-test
|
|
|
|
|
2009-04-17 13:46:04 -04:00
|
|
|
[ ] [ "IN: compiler.tests USE: io : declaration-test-1 ( -- a ) \"X\" write f ;" (( -- )) eval ] unit-test
|
2008-08-27 17:25:37 -04:00
|
|
|
|
|
|
|
[ "X" ] [ [ declaration-test ] with-string-writer ] unit-test
|