mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			702 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			702 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     enum X {A, B}
 | |
| 
 | |
|     function test_return() public returns (X) {
 | |
|         X garbled;
 | |
|         assembly {
 | |
|             garbled := 5
 | |
|         }
 | |
|         return garbled;
 | |
|     }
 | |
| 
 | |
|     function test_inline_assignment() public returns (X _ret) {
 | |
|         assembly {
 | |
|             _ret := 5
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function test_assignment() public returns (X _ret) {
 | |
|         X tmp;
 | |
|         assembly {
 | |
|             tmp := 5
 | |
|         }
 | |
|         _ret = tmp;
 | |
|     }
 | |
| }
 | |
| 
 | |
| // ====
 | |
| // EVMVersion: >=byzantium
 | |
| // compileToEwasm: also
 | |
| // ----
 | |
| // test_return() -> FAILURE, hex"4e487b71", 33 # both should throw #
 | |
| // test_inline_assignment() -> FAILURE, hex"4e487b71", 33
 | |
| // test_assignment() -> FAILURE, hex"4e487b71", 33
 |