blob: 9f6ffcdffc93ec15e06fc0c7e1676042499ce24e [file] [log] [blame]
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
syntax = "proto3";
package nested_message;
message Top {
repeated Nested nested_message_list = 1;
map<int32, Nested> nested_message_map = 2;
Nested nested_message = 3;
}
message Nested {
int32 a = 1;
}