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

Unable to --exec ambiguous mains #3398

Open
buzden opened this issue Oct 10, 2024 · 0 comments
Open

Unable to --exec ambiguous mains #3398

buzden opened this issue Oct 10, 2024 · 0 comments

Comments

@buzden
Copy link
Contributor

buzden commented Oct 10, 2024

Steps to Reproduce

Consider I have a file Main.idr with the following contents:

namespace XX

  export
  main : IO ()
  main = putStrLn "Hi, XX!"

namespace YY

  export
  main : IO ()
  main = putStrLn "Hi, YY!"

If we run

$ idris2 --exec main Main.idr

we expectedly get

Error: Ambiguous elaboration. Possible results:
    Main.XX.main
    Main.YY.main

Now, try to specify the namespace by running either

$ idris2 --exec YY.main Main.idr

or

$ idris2 --exec Main.YY.main Main.idr

Expected Behavior

Runs successfully and prints

Hi, YY!

or at least saying that namespaced main functions are not supported, if so.

Observed Behavior

Error: Undefined name YY.main. 

and

Error: Undefined name Main.YY.main. 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant