1// Generated from test.proto 2 3namespace proto.test; 4 5/// Enum doc comment. 6enum ProtoEnum : int { 7 FOO = 1, 8 /// Enum 2nd value doc comment misaligned. 9 BAR = 5, 10} 11 12table ImportedMessage { 13 a:int; 14} 15 16/// 2nd table doc comment with 17/// many lines. 18table ProtoMessage { 19 c:int = 16; 20 d:long; 21 p:uint; 22 e:ulong; 23 /// doc comment for f. 24 f:int = -1; 25 g:long; 26 h:uint; 27 q:ulong; 28 i:int; 29 j:long; 30 /// doc comment for k. 31 k:bool; 32 /// doc comment for l on 2 33 /// lines 34 l:string (required); 35 m:[ubyte]; 36 n:proto.test.ProtoMessage_.OtherMessage; 37 o:[string]; 38 z:proto.test.ImportedMessage; 39} 40 41namespace proto.test.ProtoMessage_; 42 43table OtherMessage { 44 a:double; 45 /// doc comment for b. 46 b:float = 3.14149; 47} 48 49