13 lines
		
	
	
		
			417 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			417 B
		
	
	
	
		
			Factor
		
	
	
IN: compiler.tests.redefine4
 | 
						|
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
 | 
						|
 | 
						|
[ ] [ "IN: compiler.tests.redefine4 USE: io : declaration-test-1 ( -- a ) \"X\" write f ;" eval( -- ) ] unit-test
 | 
						|
 | 
						|
[ "X" ] [ [ declaration-test ] with-string-writer ] unit-test
 |