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 8// This file contains messages for testing repeated field comparison 9// LINT: ALLOW_GROUPS 10 11syntax = "proto3"; 12 13package proto3_unittest; 14 15option optimize_for = SPEED; 16 17message TestNoPresenceField { 18 bool no_presence_bool = 1; 19 TestNoPresenceField no_presence_nested = 2; 20 repeated TestNoPresenceField no_presence_repeated_nested = 3; 21 string no_presence_string = 4; 22 bool no_presence_bool2 = 5; 23 bool no_presence_bool3 = 6; 24} 25