1// Protocol Buffers - Google's data interchange format 2// Copyright 2008 Google Inc. All rights reserved. 3// 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 7 8edition = "2023"; 9 10package protobuf_unittest; 11 12 13message TestMessage3 { 14 message NestedMessage { 15 // This enum's name is the same with the default outer class name of this 16 // proto file. It's used to test if the compiler can avoid this conflict 17 // correctly. 18 enum OuterClassNameTest3 { 19 option features.enum_type = CLOSED; 20 21 DUMMY_VALUE = 1; 22 } 23 } 24} 25