about summary refs log tree commit diff
path: root/corp
diff options
context:
space:
mode:
Diffstat (limited to 'corp')
-rw-r--r--corp/tvixbolt/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/corp/tvixbolt/src/main.rs b/corp/tvixbolt/src/main.rs
index c4359dc6dc..2d001dde80 100644
--- a/corp/tvixbolt/src/main.rs
+++ b/corp/tvixbolt/src/main.rs
@@ -184,10 +184,10 @@ impl Output {
             <>
             {maybe_show("Parse errors:", &self.parse_errors)}
             {maybe_show("Warnings:", &self.warnings)}
+            {maybe_show("Output:", &self.output)}
             {maybe_show("Compiler errors:", &self.compiler_errors)}
             {maybe_show("Bytecode:", &String::from_utf8_lossy(&self.bytecode))}
             {maybe_show("Runtime errors:", &self.runtime_errors)}
-            {maybe_show("Output:", &self.output)}
             {maybe_show("Runtime trace:", &String::from_utf8_lossy(&self.trace))}
             </>
         }