1 #include <other_package/IBaz.h>
2 
3 // Enum type should be available here since IBaz.h includes Enum.h
acceptEnum(other_package::Enum n)4 void acceptEnum(other_package::Enum n) {
5   (void)n;
6 }
7