1// Copyright 2018 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5// Ensure imported files are handled properly. This file is imported by 6// test_fuzzer_input.proto and imports imported_publicly publicly. 7 8syntax = "proto2"; 9option optimize_for = LITE_RUNTIME; 10package lpm_test_fuzzer; 11 12// Test public imported files are handled properly. 13import public "imported_publicly.proto"; 14 15message Imported { 16 required ImportedPublicly imported_publicly = 1; 17} 18