Detect leak with sanitizer (#5283)
This commit is contained in:
parent
23bb57401c
commit
2bd4a27550
|
@ -7,9 +7,14 @@ package proto.test;
|
||||||
|
|
||||||
/// Enum doc comment.
|
/// Enum doc comment.
|
||||||
enum ProtoEnum {
|
enum ProtoEnum {
|
||||||
|
option allow_alias = true;
|
||||||
FOO = 1;
|
FOO = 1;
|
||||||
/// Enum 2nd value doc comment misaligned.
|
/// Enum 2nd value doc comment misaligned.
|
||||||
BAR = 5;
|
BAR = 5;
|
||||||
|
// Aliases
|
||||||
|
FOO_A1 = 1;
|
||||||
|
BAR_A1 = 5;
|
||||||
|
FOO_A2 = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// 2nd table doc comment with
|
/// 2nd table doc comment with
|
||||||
|
|
Loading…
Reference in New Issue