mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Solidity
		
	
	
	
	
	
library L {
 | 
						|
    struct S { uint x; }
 | 
						|
    function integer(uint t, bool b) public view returns (uint) {
 | 
						|
        if (b) {
 | 
						|
            return t;
 | 
						|
        } else {
 | 
						|
            revert("failure");
 | 
						|
        }
 | 
						|
    }
 | 
						|
    function stru(S storage t, bool b) public view returns (uint) {
 | 
						|
        if (b) {
 | 
						|
            return t.x;
 | 
						|
        } else {
 | 
						|
            revert("failure");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
contract C {
 | 
						|
    using L for L.S;
 | 
						|
    L.S t;
 | 
						|
    function f(bool b) public returns (uint, string memory) {
 | 
						|
        uint x = 8;
 | 
						|
        try L.integer(x, b) returns (uint _x) {
 | 
						|
            return (_x, "");
 | 
						|
        } catch Error(string memory message) {
 | 
						|
            return (18, message);
 | 
						|
        }
 | 
						|
    }
 | 
						|
    function g(bool b) public returns (uint, string memory) {
 | 
						|
        t.x = 9;
 | 
						|
        try t.stru(b) returns (uint x) {
 | 
						|
            return (x, "");
 | 
						|
        } catch Error(string memory message) {
 | 
						|
            return (19, message);
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// EVMVersion: >=byzantium
 | 
						|
// ----
 | 
						|
// library: L
 | 
						|
// f(bool): true -> 8, 0x40, 0
 | 
						|
// f(bool): false -> 18, 0x40, 7, "failure"
 | 
						|
// g(bool): true -> 9, 0x40, 0
 | 
						|
// g(bool): false -> 19, 0x40, 7, "failure"
 |