solidity/test/libsolidity/semanticTests/modifiers/modifier_in_constructor_ice.sol

8 lines
174 B
Solidity
Raw Normal View History

// The IR of this contract used to throw
contract A { modifier m1{_;} }
contract B is A { constructor() A() m1{} }
// ====
// compileViaYul: also
// ----
// constructor() ->