[C++] support native_inline attribute for vector of tables (#7479)

This commit is contained in:
sssooonnnggg
2022-08-30 03:48:10 +08:00
committed by GitHub
parent 694add668b
commit 6a87427540
8 changed files with 347 additions and 24 deletions

View File

@@ -0,0 +1,7 @@
table NativeInlineTable {
a: int;
}
table TestNativeInlineTable {
t: [NativeInlineTable] (native_inline);
}