mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			340 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			340 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract test {
 | 
						|
    function f() public pure {
 | 
						|
        fixed a = 0.42578125 % -0.4271087646484375;
 | 
						|
        fixed b = .5 % a;
 | 
						|
        fixed c = a % b;
 | 
						|
        a; b; c;
 | 
						|
    }
 | 
						|
}
 | 
						|
// ----
 | 
						|
// TypeError 2271: (117-123): Built-in binary operator % cannot be applied to types rational_const 1 / 2 and fixed128x18. Fractional literals not supported.
 |