1struct Foo;2 3extern void lib1_func(Foo *);4extern void lib2_func(Foo *);5 6int main() {7 lib1_func(nullptr);8 lib2_func(nullptr);9 return 0;10}11