blob: c63afe6e2cf8cabda5264c7e1da110a4975da0e3 [file] [log] [blame]
Marcel Hlopko3ced8182023-07-20 00:30:29 -07001// Protocol Buffers - Google's data interchange format
2// Copyright 2023 Google LLC. All rights reserved.
Marcel Hlopko3ced8182023-07-20 00:30:29 -07003//
Joshua Haberman177092c2023-09-08 17:13:17 -07004// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file or at
6// https://developers.google.com/open-source/licenses/bsd
Marcel Hlopko3ced8182023-07-20 00:30:29 -07007
8syntax = "proto2";
9
10package testing_packages;
11
Protobuf Team Botbdd833f2024-02-05 11:38:53 -080012message OtherMsgWithPackage {
13 message Nested {}
14 optional Nested nested = 1;
15}
Alyssa Haroldsen1eab5a02024-01-08 18:50:28 -080016
17enum OtherEnumWithPackage {
18 OTHER_ENUM_WITH_PACKAGE_UNSPECIFIED = 0;
19}