mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			184 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			184 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     function f() public returns (uint256 r, bytes32 r2) {
 | |
|         assembly {
 | |
|             r := 7
 | |
|             r2 := "abcdef"
 | |
|         }
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // f() -> 7, "abcdef"
 |