mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			356 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			356 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
pragma experimental ABIEncoderV2;
 | 
						|
 | 
						|
contract C {
 | 
						|
    struct S { uint x; }
 | 
						|
    S s;
 | 
						|
    struct T { uint y; }
 | 
						|
    T t;
 | 
						|
    function f() public view {
 | 
						|
        bytes32 a = sha256(abi.encodePacked(s, t));
 | 
						|
        a;
 | 
						|
    }
 | 
						|
}
 | 
						|
// ----
 | 
						|
// TypeError 9578: (191-192): Type not supported in packed mode.
 | 
						|
// TypeError 9578: (194-195): Type not supported in packed mode.
 |