NethermindEth / starknet-contract-verifier

CLI to verify your starknet contracts classes on block explorers!
19 stars 7 forks source link

`use` with `super` #11

Closed julio4 closed 1 month ago

julio4 commented 8 months ago

use super::fn -> create useless super directory in target use super::super::fn -> IMPORT NOT RESOLVED with diagnostic SuperUsedInRootModule

cwkang1998 commented 3 months ago

Able to consistently reproduce this. super seems to be treated as a package instead of a keyword that links to the parent package in this case. Looking into the cairo-lang-semantics to get some insight into how the super keyword is resolved.