mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			431 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			431 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
pragma abicoder               v2;
 | 
						|
 | 
						|
contract C {
 | 
						|
    struct S {
 | 
						|
        uint a;
 | 
						|
        uint b;
 | 
						|
    }
 | 
						|
    struct T {
 | 
						|
        uint a;
 | 
						|
        uint b;
 | 
						|
        string s;
 | 
						|
    }
 | 
						|
    function s() public returns (S memory) {
 | 
						|
        return S(23, 42);
 | 
						|
    }
 | 
						|
    function t() public returns (T memory) {
 | 
						|
        return T(23, 42, "any");
 | 
						|
    }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileToEwasm: also
 | 
						|
// ----
 | 
						|
// s() -> 23, 42
 | 
						|
// t() -> 0x20, 23, 42, 0x60, 3, "any"
 |