fixing issue290 - it was a bug in the brain of the reporter.

imports need to be qualified to support this behavior.
This commit is contained in:
Dylan McNamee 2014-04-22 17:03:24 -07:00
parent 72d690bd9f
commit b7cad1c5b0
2 changed files with 5 additions and 3 deletions

View File

@ -3,5 +3,7 @@ Loading module Cryptol
Loading module Cryptol Loading module Cryptol
Loading module issue290 Loading module issue290
Loading module issue290bar Loading module issue290bar
Assuming a = 2
and then a bunch of 1's and 2's instead of undefined constants 2
1
1

View File

@ -1,6 +1,6 @@
module issue290bar where module issue290bar where
import issue290 import issue290 as issue290
fooConst = 2 fooConst = 2
barConst = issue290::fooConst barConst = issue290::fooConst