solidity/test/libsolidity/semanticTests/modifiers/modifier_in_constructor_ice.sol
2021-04-23 17:00:01 +01:00

9 lines
198 B
Solidity

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