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

15 lines
255 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 { }
}
// ====
// compileViaYul: also
// compileToEwasm: also
// ----
// constructor() ->