Marcel Hlopko | 3ced818 | 2023-07-20 00:30:29 -0700 | [diff] [blame] | 1 | // Protocol Buffers - Google's data interchange format |
| 2 | // Copyright 2023 Google LLC. All rights reserved. |
Marcel Hlopko | 3ced818 | 2023-07-20 00:30:29 -0700 | [diff] [blame] | 3 | // |
Joshua Haberman | 177092c | 2023-09-08 17:13:17 -0700 | [diff] [blame] | 4 | // 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 Hlopko | 3ced818 | 2023-07-20 00:30:29 -0700 | [diff] [blame] | 7 | |
| 8 | syntax = "proto2"; |
| 9 | |
| 10 | package testing_packages; |
| 11 | |
Protobuf Team Bot | bdd833f | 2024-02-05 11:38:53 -0800 | [diff] [blame] | 12 | message OtherMsgWithPackage { |
| 13 | message Nested {} |
| 14 | optional Nested nested = 1; |
| 15 | } |
Alyssa Haroldsen | 1eab5a0 | 2024-01-08 18:50:28 -0800 | [diff] [blame] | 16 | |
| 17 | enum OtherEnumWithPackage { |
| 18 | OTHER_ENUM_WITH_PACKAGE_UNSPECIFIED = 0; |
| 19 | } |