diff options
Diffstat (limited to 'examples/03-inductive-data-types')
| -rw-r--r-- | examples/03-inductive-data-types/output/rust/src/arithmetic.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/03-inductive-data-types/output/rust/src/arithmetic.rs b/examples/03-inductive-data-types/output/rust/src/arithmetic.rs index ab4049d..a9679dc 100644 --- a/examples/03-inductive-data-types/output/rust/src/arithmetic.rs +++ b/examples/03-inductive-data-types/output/rust/src/arithmetic.rs @@ -1,7 +1,7 @@ // Generated by hobgoblin. pub enum Expression { - Add(std::boxed::Box<crate::arithmetic::Add>), + Add(::std::boxed::Box<crate::arithmetic::Add>), Const(crate::arithmetic::Const), } @@ -11,5 +11,5 @@ pub struct Add { } pub struct Const { - pub value: i32, + pub value: ::core::primitive::i32, } |
