interfaceid.sol 265 B

12345678
  1. contract foo {
  2. function get() public returns (bytes4) {
  3. return type(foo).interfaceId;
  4. }
  5. }
  6. // ---- Expect: diagnostics ----
  7. // error: 4:24-45: type(…).interfaceId is permitted on interface, not contract foo