mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			528 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			528 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    struct S { uint a; }
 | 
						|
    S s;
 | 
						|
    function f() pure public {
 | 
						|
        S storage x = s;
 | 
						|
        x;
 | 
						|
    }
 | 
						|
    function g() view public {
 | 
						|
        S storage x = s;
 | 
						|
        x.a = 1;
 | 
						|
    }
 | 
						|
}
 | 
						|
// ----
 | 
						|
// TypeError 2527: (100-101): Function declared as pure, but this expression (potentially) reads from the environment or state and thus requires "view".
 | 
						|
// TypeError 8961: (184-187): Function declared as view, but this expression (potentially) modifies the state and thus requires non-payable (the default) or payable.
 |