mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			884 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			884 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract Test {
 | 
						|
    bytes x;
 | 
						|
    function set(bytes memory _a) public { x = _a; }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileViaYul: also
 | 
						|
// ----
 | 
						|
// set(bytes): 0x20, 3, "abc"
 | 
						|
// storageEmpty -> 0
 | 
						|
// set(bytes): 0x20, 0
 | 
						|
// storageEmpty -> 1
 | 
						|
// set(bytes): 0x20, 31, "1234567890123456789012345678901"
 | 
						|
// storageEmpty -> 0
 | 
						|
// set(bytes): 0x20, 36, "12345678901234567890123456789012", "XXXX"
 | 
						|
// storageEmpty -> 0
 | 
						|
// set(bytes): 0x20, 3, "abc"
 | 
						|
// storageEmpty -> 0
 | 
						|
// set(bytes): 0x20, 0
 | 
						|
// storageEmpty -> 1
 | 
						|
// set(bytes): 0x20, 3, "abc"
 | 
						|
// storageEmpty -> 0
 | 
						|
// set(bytes): 0x20, 36, "12345678901234567890123456789012", "XXXX"
 | 
						|
// storageEmpty -> 0
 | 
						|
// set(bytes): 0x20, 0
 | 
						|
// storageEmpty -> 1
 | 
						|
// set(bytes): 0x20, 66, "12345678901234567890123456789012", "12345678901234567890123456789012", "12"
 | 
						|
// storageEmpty -> 0
 | 
						|
// set(bytes): 0x20, 3, "abc"
 | 
						|
// storageEmpty -> 0
 | 
						|
// set(bytes): 0x20, 0
 | 
						|
// storageEmpty -> 1
 |