Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inherited Enum Allows Type Reference but Not Value Access #15832

Open
zzh1996 opened this issue Feb 5, 2025 · 0 comments
Open

Inherited Enum Allows Type Reference but Not Value Access #15832

zzh1996 opened this issue Feb 5, 2025 · 0 comments
Labels

Comments

@zzh1996
Copy link

zzh1996 commented Feb 5, 2025

Description

When an enum is defined in a parent contract and a child contract inherits from it, the child contract correctly recognizes the enum type but cannot directly access its values. This behavior is inconsistent and unexpected.

Environment

  • Compiler version: 0.8.28
  • Compilation pipeline (legacy, IR, EOF): default
  • Target EVM version (as per compiler settings): default
  • Framework/IDE (e.g. Foundry, Hardhat, Remix): Remix IDE

Steps to Reproduce

// SPDX-License-Identifier: UNLICENSED
pragma solidity =0.8.28;

contract A {
    enum E { E1 }
}

contract B is A {
}

contract C {
    A.E e1 = A.E.E1; // ✅ OK
    B.E e2 = A.E.E1; // ✅ OK
    B.E e3 = B.E.E1; // ❌ TypeError: Member "E" not found or not visible after argument-dependent lookup in type(contract B).
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant