mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			426 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			426 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    struct S {
 | 
						|
        uint256 x;
 | 
						|
        uint128 y;
 | 
						|
        uint32 z;
 | 
						|
    }
 | 
						|
    uint8 b = 23;
 | 
						|
    S s;
 | 
						|
    uint8 a = 17;
 | 
						|
    function f() public {
 | 
						|
        s.x = 42; s.y = 42; s.y = 42;
 | 
						|
        delete s;
 | 
						|
        assert(s.x == 0);
 | 
						|
        assert(s.y == 0);
 | 
						|
        assert(s.z == 0);
 | 
						|
        assert(b == 23);
 | 
						|
        assert(a == 17);
 | 
						|
    }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileToEwasm: also
 | 
						|
// compileViaYul: also
 | 
						|
// ----
 | 
						|
// f() ->
 |