1 // bindgen-flags: --merge-extern-blocks --enable-cxx-namespaces -- --target=x86_64-unknown-linux
2 int foo();
3 typedef struct Point {
4     int x;
5 } Point;
6 int bar();
7 
8 namespace ns {
9     int foo();
10     typedef struct Point {
11         int x;
12     } Point;
13     int bar();
14 }
15