Fix exported module not found (#9121)

This commit is contained in:
Jakub Žádník
2023-05-06 23:55:10 +03:00
committed by GitHub
parent a2a346e39c
commit 0ea973b78b
4 changed files with 51 additions and 35 deletions

View File

@ -0,0 +1 @@
export def main [] { 'eggs' }

View File

@ -1,3 +1,5 @@
export module eggs.nu
export def main [] { 'spam' }
export def baz [] { 'spambaz' }