Open ssomayyajula opened 1 month ago
latest
module Concrete { method DoNothing() { } } abstract module Abstract { import C: Concrete } module MoreConcrete refines Abstract { } method Main() { MoreConcrete.C.DoNothing(); }
dafny run ... error CS0103: The name 'Abstract' does not exist in the current context
The abstract import of a concrete module should be disallowed.
Mac
Dafny version
latest
Code to produce this issue
Command to run and resulting output
What happened?
The abstract import of a concrete module should be disallowed.
What type of operating system are you experiencing the problem on?
Mac