mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			417 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			417 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract D {
 | |
|     uint256 x;
 | |
| 
 | |
|     constructor() public {
 | |
|         x = 7;
 | |
|     }
 | |
| 
 | |
|     function f() public view returns (uint256) {
 | |
|         return x;
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| contract C {
 | |
|     function test() public returns (uint256) {
 | |
| 	D d = new D();
 | |
| 	bytes32 hash;
 | |
| 	assembly { hash := extcodehash(d) }
 | |
| 	assert(hash == keccak256(type(D).runtimeCode));
 | |
| 	return 42;
 | |
|     }
 | |
| }
 | |
| 
 | |
| // ====
 | |
| // EVMVersion: >=constantinople
 | |
| // ----
 | |
| // test() -> 42
 |