mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			325 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			325 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract test {
 | |
| 	function f() pure public {
 | |
| 		bytes32 x = sha3("");
 | |
| 		x;
 | |
| 	}
 | |
| 	function g() public {
 | |
| 		suicide(0x0000000000000000000000000000000000000001);
 | |
| 	}
 | |
| }
 | |
| // ----
 | |
| // TypeError: (58-66): "sha3" has been deprecated in favour of "keccak256"
 | |
| // TypeError: (101-152): "suicide" has been deprecated in favour of "selfdestruct"
 |