summaryrefslogtreecommitdiff
path: root/examples/01-struct/output/rust/src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/01-struct/output/rust/src')
-rw-r--r--examples/01-struct/output/rust/src/point.rs4
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.