mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			247 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			247 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     modifier repeat(uint256 count) {
 | |
|         uint256 i;
 | |
|         for (i = 0; i < count; ++i) _;
 | |
|     }
 | |
| 
 | |
|     function f() public repeat(10) returns (uint256 r) {
 | |
|         r += 1;
 | |
|     }
 | |
| }
 | |
| // ====
 | |
| // compileViaYul: true
 | |
| // ----
 | |
| // f() -> 1
 |