diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index e0188012..bbe079fd 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -64,7 +64,8 @@ int main(int argc, char *argv[]) // Resolve names to be absolute names (include references to the relevant struct/global/function)
g_cur_phase = "Resolve";
ResolvePaths(crate);
- //s << crate;
+
+ g_cur_phase = "Temp output"; Dump_Rust( FMT(params.outfile << ".rs").c_str(), crate );
// Typecheck / type propagate module (type annotations of all values)
// - Check all generic conditions (ensure referenced trait is valid)
|