address_code_03.sol 219 B

123456789
  1. contract UpgradeableProxy {
  2. function _setImplementation(
  3. address newImplementation
  4. ) public view returns (bytes memory) {
  5. return newImplementation.code;
  6. }
  7. }
  8. // ---- Expect: diagnostics ----