blob: 77a72da873431bc41f18a2e3b0306cb21472e464 [file] [log] [blame]
// Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// Test that features with legacy descriptor helpers get properly converted.
edition = "2023";
package legacy_features_unittest;
message TestEditionsMessage {
int32 required_field = 1 [features.field_presence = LEGACY_REQUIRED];
TestEditionsMessage delimited_field = 2
[features.message_encoding = DELIMITED];
}