aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/ast/rust-stmt.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/rust/ast/rust-stmt.h')
-rw-r--r--gcc/rust/ast/rust-stmt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/rust/ast/rust-stmt.h b/gcc/rust/ast/rust-stmt.h
index f19ba2c..addb5f9 100644
--- a/gcc/rust/ast/rust-stmt.h
+++ b/gcc/rust/ast/rust-stmt.h
@@ -213,6 +213,8 @@ public:
::std::string as_string () const;
+ ::std::vector<LetStmt *> locals;
+
ExprStmtWithBlock (::std::unique_ptr<ExprWithBlock> expr, Location locus)
: ExprStmt (locus), expr (::std::move (expr))
{}