diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-07-24 17:59:45 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-07-24 17:59:45 +0100 |
| commit | 2bc23bdc7fe01fc5921be8e09f405a8a1fd7bd65 (patch) | |
| tree | 9df07f8aeba21f4fb91e23fcc8d1c7a4a57a42eb /examples/09-custom-code/output/rust/src | |
| parent | c8baf035c5a1705b957931f56f9162125803e554 (diff) | |
Add Shared type
Diffstat (limited to 'examples/09-custom-code/output/rust/src')
| -rw-r--r-- | examples/09-custom-code/output/rust/src/gen/shapes.rs | 6 | ||||
| -rw-r--r-- | examples/09-custom-code/output/rust/src/lib.rs | 12 | ||||
| -rw-r--r-- | examples/09-custom-code/output/rust/src/shapes.rs | 7 |
3 files changed, 25 insertions, 0 deletions
diff --git a/examples/09-custom-code/output/rust/src/gen/shapes.rs b/examples/09-custom-code/output/rust/src/gen/shapes.rs new file mode 100644 index 0000000..c5f8af5 --- /dev/null +++ b/examples/09-custom-code/output/rust/src/gen/shapes.rs @@ -0,0 +1,6 @@ +// Generated by hobgoblin. + +#[derive(Debug, PartialEq)] +pub struct Square { + pub width: ::core::primitive::i32, +} diff --git a/examples/09-custom-code/output/rust/src/lib.rs b/examples/09-custom-code/output/rust/src/lib.rs new file mode 100644 index 0000000..1825d72 --- /dev/null +++ b/examples/09-custom-code/output/rust/src/lib.rs @@ -0,0 +1,12 @@ +mod shapes; + +#[cfg(test)] +mod test { + use super::shapes::Square; + + #[test] + fn can_use_custom_code() { + let square = Square { width: 10 }; + assert_eq!(square.area(), 100); + } +} diff --git a/examples/09-custom-code/output/rust/src/shapes.rs b/examples/09-custom-code/output/rust/src/shapes.rs new file mode 100644 index 0000000..f806bbb --- /dev/null +++ b/examples/09-custom-code/output/rust/src/shapes.rs @@ -0,0 +1,7 @@ +include!("gen/shapes.rs"); + +impl Square { + pub fn area(&self) -> i32 { + self.width * self.width + } +} |
