mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			473 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			473 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    function f(bool a) public pure returns (bool x) {
 | 
						|
        bool b = a;
 | 
						|
        x = b;
 | 
						|
        assert(b);
 | 
						|
    }
 | 
						|
    function fail() public pure returns (bool x) {
 | 
						|
        x = true;
 | 
						|
        assert(false);
 | 
						|
    }
 | 
						|
    function succeed() public pure returns (bool x) {
 | 
						|
        x = true;
 | 
						|
        assert(true);
 | 
						|
    }
 | 
						|
}
 | 
						|
// ----
 | 
						|
// f(bool): true -> true
 | 
						|
// f(bool): false -> FAILURE, hex"4e487b71", 0x01
 | 
						|
// fail() -> FAILURE, hex"4e487b71", 0x01
 | 
						|
// succeed() -> true
 |