mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			394 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			394 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    function f(bool a) public pure returns (bool x) {
 | 
						|
        bool b = a;
 | 
						|
        x = b;
 | 
						|
        assert(b);
 | 
						|
    }
 | 
						|
    function f2(bool a) public pure returns (bool x) {
 | 
						|
        bool b = a;
 | 
						|
        x = b;
 | 
						|
        require(b);
 | 
						|
    }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileViaYul: true
 | 
						|
// ----
 | 
						|
// f(bool): true -> true
 | 
						|
// f(bool): false -> FAILURE
 | 
						|
// f2(bool): true -> true
 | 
						|
// f2(bool): false -> FAILURE
 |