mirror of
https://github.com/vee1e/flatbuffers.git
synced 2026-09-02 10:17:51 +00:00
Detect leak with sanitizer (#5283)
This commit is contained in:
parent
23bb57401c
commit
2bd4a27550
1 changed files with 6 additions and 1 deletions
|
|
@ -7,9 +7,14 @@ package proto.test;
|
|||
|
||||
/// Enum doc comment.
|
||||
enum ProtoEnum {
|
||||
option allow_alias = true;
|
||||
FOO = 1;
|
||||
/// Enum 2nd value doc comment misaligned.
|
||||
/// Enum 2nd value doc comment misaligned.
|
||||
BAR = 5;
|
||||
// Aliases
|
||||
FOO_A1 = 1;
|
||||
BAR_A1 = 5;
|
||||
FOO_A2 = 1;
|
||||
}
|
||||
|
||||
/// 2nd table doc comment with
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue