retrieve_contract_code.sol 195 B

1234567891011
  1. contract example {
  2. function test() public {
  3. bytes runtime = type(other).runtimeCode;
  4. }
  5. }
  6. contract other {
  7. function foo() public returns (bool) {
  8. return true;
  9. }
  10. }