mirror of
https://github.com/protocolbuffers/protobuf
synced 2026-08-26 02:23:14 -04:00
8 lines
212 B
Protocol Buffer
8 lines
212 B
Protocol Buffer
edition = "2023";
|
|
|
|
package pkg;
|
|
|
|
message EditionsMessage {
|
|
int32 required_field = 1 [features.field_presence = LEGACY_REQUIRED];
|
|
EditionsMessage delimited_field = 2 [features.message_encoding = DELIMITED];
|
|
}
|