xref: /tonic/tests/included_service/src/lib.rs (revision 3a5c66d5)
1 pub mod pb {
2     tonic::include_proto!("includer");
3 }
4 
5 // Ensure that an RPC service, defined before including a file that defines
6 // another service in a different protocol buffer package, is not incorrectly
7 // cleared from the context of its package.
8 type _Test = dyn pb::top_service_server::TopService;
9