Add new tests to validate relative import path fix

This commit is contained in:
Austin Chick
2025-12-22 08:18:43 -06:00
parent 0dc7ab69ec
commit 03e5dab416
4 changed files with 70 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
namespace Transit.One;
table Info {
timestamp:ulong;
}
namespace Transit.Two;
table Identity {
id:uint;
}
namespace Transit.Three;
table Header {
info:Transit.One.Info;
id:Transit.Two.Identity;
}
root_type Header;