Open cyberthirst opened 4 weeks ago
vyper --version
following compiles
# main.vy import ITest implements: ITest @external @view def c() -> uint256: return 1 # ITest.vyi c: public(constant(uint256)) = 32
also, as mentioned in: https://github.com/vyperlang/vyper/issues/3978#issuecomment-2440046738, the interface can declare a var in transient, and it can end up being implemented as a regular function
transient
Version Information
vyper --version
): 063f1900a1b2b32bf8d0f091027dd0fb16e99de8What's your issue about?
following compiles
also, as mentioned in: https://github.com/vyperlang/vyper/issues/3978#issuecomment-2440046738, the interface can declare a var in
transient
, and it can end up being implemented as a regular function