mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			330 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			330 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
library WithModifier {
 | 
						|
    modifier mod() { require(msg.value > 10 ether); _; }
 | 
						|
    function withMod(uint self) mod() internal view { require(self > 0); }
 | 
						|
}
 | 
						|
 | 
						|
contract Test {
 | 
						|
    using WithModifier for *;
 | 
						|
 | 
						|
    function f(uint _value) public payable {
 | 
						|
        _value.withMod();
 | 
						|
        WithModifier.withMod(_value);
 | 
						|
    }
 | 
						|
}
 | 
						|
// ----
 |