mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			277 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			277 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     /// test
 | |
|     uint a;
 | |
|     function f() public pure returns (uint x) {
 | |
|         /// test2
 | |
|         for (uint i = 0; i < 20; i++) {
 | |
|             /// tee
 | |
|             /// s "t" 3
 | |
|             x *= 2;
 | |
|         }
 | |
|         /** tes "t4" */
 | |
|         return x;
 | |
|     }
 | |
| }
 | |
| 
 | |
| // ----
 |