mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			200 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			200 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| // The IR of this contract used to throw
 | |
| contract A {
 | |
|   constructor() m1 { }
 | |
|   modifier m1 { _; }
 | |
| }
 | |
| contract B is A {
 | |
|   modifier m2 { _; }
 | |
|   constructor() A() m1 m2 {  }
 | |
| }
 | |
| // ----
 | |
| // constructor() ->
 |