diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-08-08 22:32:02 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-08-08 22:33:36 +0100 |
| commit | 39e34d4f524f5492065ba47b6cd33d5f272cd515 (patch) | |
| tree | f16782a9292d9da9564e4ce7d5d6efb791ef0498 /examples/15-transient-0/src | |
| parent | 6dd8f8fe274e11348b631abcf67ee7ccf8254997 (diff) | |
Partially support generic native types in java-transient-0
Diffstat (limited to 'examples/15-transient-0/src')
| -rw-r--r-- | examples/15-transient-0/src/data.hob | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/15-transient-0/src/data.hob b/examples/15-transient-0/src/data.hob index bcc0ec1..1fb173e 100644 --- a/examples/15-transient-0/src/data.hob +++ b/examples/15-transient-0/src/data.hob @@ -83,6 +83,13 @@ struct StructWithNative { field a: Native; } +native GenericNative[A, B] { +} + +struct StructWithGenericNative { + field a: GenericNative[Int32, String]; +} + struct StructWithBox { field inner: Box[StructWithInt32]; } |
