Merge branch 'devel' into expand-amb-identifier-output

This commit is contained in:
jrfondren
2019-05-03 13:03:45 -05:00
committed by GitHub
99 changed files with 3389 additions and 1421 deletions

View File

@@ -0,0 +1 @@
proc flat*() = echo "flat"

View File

@@ -1,7 +1,10 @@
discard """
errormsg: "module names need to be unique per Nimble package"
file: "tnotuniquename/mnotuniquename.nim"
output: '''nested
flat'''
"""
import mnotuniquename
import tnotuniquename/mnotuniquename as nun
import tnotuniquename_dir/mnotuniquename as nun
nested()
flat()

View File

@@ -1,6 +1,7 @@
discard """
errormsg: "module names need to be unique per Nimble package"
file: "tnotuniquename/mnotuniquename.nim"
disabled: "true"
"""
import mnotuniquename

View File

@@ -0,0 +1,2 @@
proc nested*() = echo "nested"