13 lines
		
	
	
		
			417 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			417 B
		
	
	
	
		
			Factor
		
	
	
| USING: io.streams.string kernel tools.test eval ;
 | |
| IN: compiler.tests.redefine4
 | |
| 
 | |
| : 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
 |