1# Regression test for #524: 2# Generator fails to find dependencies from another package namespace 3 4Import('env') 5 6env.NanopbProto("submessage.proto") 7env.NanopbProto("oneof.proto") 8env.Depends("oneof.pb.c", "submessage.proto") 9env.Object("oneof.pb.c") 10env.Match(["oneof.pb.h", "oneof.expected"]) 11 12