File: generated_message_ordering.proto

package info (click to toggle)
rust-protox 0.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 468 kB
  • sloc: makefile: 2
file content (17 lines) | stat: -rw-r--r-- 206 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto2";

extend Bar {
    optional group Baz = 1 {}
}

message Bar {
    extensions 1;

    map<int32, string> x = 5;

    oneof foo { // foo
        group Quz = 3 {}
    }

    message Nest {}
}