1syntax = "proto3"; 2 3package file_mode; 4 5// Note that this import doesn't result in a dependency added to BUILD 6// when evaluated by generate_test. Dependencies are added by the resolve 7// step which is tested elsewhere. 8// 9// This import is tested by generate_test.TestFileModeImports. 10import "file_mode/foo.proto"; 11 12message Bar { 13 Foo foo = 1; 14}