diff options
Diffstat (limited to 'Source/Dafny/Compiler.cs')
-rw-r--r-- | Source/Dafny/Compiler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Dafny/Compiler.cs b/Source/Dafny/Compiler.cs index 3864df8b..4544a01b 100644 --- a/Source/Dafny/Compiler.cs +++ b/Source/Dafny/Compiler.cs @@ -66,7 +66,7 @@ namespace Microsoft.Dafny { ReadRuntimeSystem();
CompileBuiltIns(program.BuiltIns);
- foreach (ModuleDefinition m in program.Modules) {
+ foreach (ModuleDefinition m in program.CompileModules) {
if (m.IsGhost) {
// the purpose of a ghost module is to skip compilation
continue;
|