mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			327 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			327 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| // this test just checks that the copy loop does not mess up the stack
 | |
| contract C {
 | |
|     function save() public returns (uint256 r) {
 | |
|         r = 23;
 | |
|         savedData = msg.data;
 | |
|         r = 24;
 | |
|     }
 | |
| 
 | |
|     bytes savedData;
 | |
| }
 | |
| // ====
 | |
| // compileViaYul: also
 | |
| // ----
 | |
| // save() -> 24 # empty copy loop #
 | |
| // save(): "abcdefg" -> 24
 |