diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-06-30 21:23:51 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-06-30 21:23:51 +0100 |
| commit | d0c6cc5511f5b953ca1a4184e6c7b903e4bb7450 (patch) | |
| tree | 5ed9f5bc8227f42fe6076779135f85794132537b /examples/01-struct/output/rust/src/point.rs | |
| parent | e69e58c00f1f7e64dc0bcfb1694564c6f4e8486a (diff) | |
Fully qualify Rust type expressions
Diffstat (limited to 'examples/01-struct/output/rust/src/point.rs')
| -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 063c3f0..467b8a8 100644 --- a/examples/01-struct/output/rust/src/point.rs +++ b/examples/01-struct/output/rust/src/point.rs @@ -1,7 +1,7 @@ /// A straight line from one point to another. pub struct Line { - pub start: Point, - pub end: Point, + pub start: crate::point::Point, + pub end: crate::point::Point, } /// A 2D point. |
