1// Protocol Buffers - Google's data interchange format 2// Copyright 2023 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 8syntax = "proto2"; 9 10package pb; 11 12import "google/protobuf/descriptor.proto"; 13 14extend google.protobuf.FeatureSet { 15 optional TestInvalidFeatures test_invalid = 9996; 16} 17 18message TestInvalidFeatures { 19 repeated int32 repeated_feature = 1 [ 20 retention = RETENTION_RUNTIME, 21 targets = TARGET_TYPE_FIELD, 22 edition_defaults = { edition: EDITION_2023, value: "3" } 23 ]; 24} 25