revert.sol 81 B

12345
  1. abstract contract c {
  2. constructor(int256 x) {
  3. assert(x > 0);
  4. }
  5. }