summaryrefslogtreecommitdiff
path: root/examples/11-transient-0/src/data.hob
diff options
context:
space:
mode:
Diffstat (limited to 'examples/11-transient-0/src/data.hob')
-rw-r--r--examples/11-transient-0/src/data.hob6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/11-transient-0/src/data.hob b/examples/11-transient-0/src/data.hob
index 63ed8d3..abe9552 100644
--- a/examples/11-transient-0/src/data.hob
+++ b/examples/11-transient-0/src/data.hob
@@ -65,3 +65,9 @@ struct StructWithSum {
struct StructWithListOfShared {
field inner: List[Shared[StructWithInt32]];
}
+
+struct StructWithDifferentSharedTypes {
+ field a: Shared[StructWithInt32];
+ field b: Shared[StructWithInt64];
+ field c: Shared[StructWithInt32];
+}