• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Protocol Buffers - Google's data interchange format
2// Copyright 2023 Google LLC.  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 upb_test;
11
12message TestUtf8Proto2Bytes {
13  optional bytes data = 1;
14}
15
16message TestUtf8RepeatedProto2Bytes {
17  optional bytes data = 1;
18}
19
20message TestUtf8Proto2String {
21  optional string data = 1;
22}
23
24message TestUtf8RepeatedProto2String {
25  repeated string data = 1;
26}
27