mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			445 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			445 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    function f() public view returns (uint ret) {
 | 
						|
        assembly {
 | 
						|
            let basefee := sload(0)
 | 
						|
            ret := basefee
 | 
						|
        }
 | 
						|
    }
 | 
						|
    function g() public pure returns (uint ret) {
 | 
						|
        assembly {
 | 
						|
            function basefee() -> r {
 | 
						|
                r := 1000
 | 
						|
            }
 | 
						|
            ret := basefee()
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileViaYul: also
 | 
						|
// EVMVersion: <=berlin
 | 
						|
// ----
 | 
						|
// f() -> 0
 | 
						|
// g() -> 1000
 |