Files
flatbuffers-bigfoot/tests/swift/tests/CodeGenerationTests/test_no_include.fbs
mustiikhalil a67e35aff9 Moves all of the swift test code into tests/swift (#7509)
Fixes failing tests by regenerating test cases
2022-09-09 22:35:42 -07:00

13 lines
184 B
Plaintext

struct BytesCount {
x: int64;
}
table InternalMessage {
str: string;
}
table Message {
id: int64;
position: BytesCount (required);
pointer: InternalMessage (required);
}