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/01-struct/output/rust | |
| parent | f70794a17a357c93014059f23db53fae4fcc578c (diff) | |
Qualify global paths
Diffstat (limited to 'examples/01-struct/output/rust')
| -rw-r--r-- | examples/01-struct/output/rust/src/point.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/01-struct/output/rust/src/point.rs b/examples/01-struct/output/rust/src/point.rs index 19ed5c8..f2d7ffc 100644 --- a/examples/01-struct/output/rust/src/point.rs +++ b/examples/01-struct/output/rust/src/point.rs @@ -8,6 +8,6 @@ pub struct Line { /// A 2D point. pub struct Point { - pub x: i32, - pub y: i32, + pub x: ::core::primitive::i32, + pub y: ::core::primitive::i32, } |
