diff --git a/src/ast/ast.rs b/src/ast/ast.rs index 139f5634..6734a446 100644 --- a/src/ast/ast.rs +++ b/src/ast/ast.rs @@ -839,6 +839,8 @@ impl AST { /// /// { // <- new block scope /// const Z = 0; // <- literal constant not at top-level + /// + /// print(Z); // make sure the block is not optimized away /// } /// ")?; ///