mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			205 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			205 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
{
 | 
						|
    function f(a:u256, b:u256, c:bool) -> r:bool, t {
 | 
						|
        r := lt(a, b)
 | 
						|
        t := bool_to_u256(not(c))
 | 
						|
    }
 | 
						|
    let x: bool, y: u256 := f(1, 2: u256, true)
 | 
						|
}
 | 
						|
// ====
 | 
						|
// dialect: evmTyped
 | 
						|
// ----
 |