mirror of
				https://github.com/roc-lang/roc.git
				synced 2025-10-31 13:14:20 +00:00 
			
		
		
		
	 204ac2f8b4
			
		
	
	
		204ac2f8b4
		
			
		
	
	
	
	
		
			
			Makes sure that we turn on `debug-symbols` in mono tests, and that this feature is fully respected in symbol generation, so that output in release + debug builds are the same. Closes #4435
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			268 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			268 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| procedure Bool.2 ():
 | |
|     let Bool.23 : Int1 = true;
 | |
|     ret Bool.23;
 | |
| 
 | |
| procedure Test.0 ():
 | |
|     let Test.2 : Int1 = CallByName Bool.2;
 | |
|     if Test.2 then
 | |
|         let Test.3 : I64 = 1i64;
 | |
|         ret Test.3;
 | |
|     else
 | |
|         let Test.1 : I64 = 2i64;
 | |
|         ret Test.1;
 |