diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-07-03 14:25:17 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-07-03 14:25:17 +0100 |
| commit | 98ca09b7b1ff3b82e3bb4de728417b176d56d4e7 (patch) | |
| tree | 66c2c90f0415a5d482bfdc77b3a3a5cef71a5312 /examples/05-list/output/rust/src | |
| parent | f70794a17a357c93014059f23db53fae4fcc578c (diff) | |
Qualify global paths
Diffstat (limited to 'examples/05-list/output/rust/src')
| -rw-r--r-- | examples/05-list/output/rust/src/point.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/05-list/output/rust/src/point.rs b/examples/05-list/output/rust/src/point.rs index 6249c0a..5635d38 100644 --- a/examples/05-list/output/rust/src/point.rs +++ b/examples/05-list/output/rust/src/point.rs @@ -1,10 +1,10 @@ // Generated by hobgoblin. pub struct Path { - pub points: std::vec::Vec<crate::point::Point>, + pub points: ::std::vec::Vec<crate::point::Point>, } pub struct Point { - pub x: i32, - pub y: i32, + pub x: ::core::primitive::i32, + pub y: ::core::primitive::i32, } |
