1// bindgen-flags: --disable-nested-struct-naming 2 3struct A { 4 static A make(); 5 int a; 6}; 7struct B { 8 static B make(); 9 int b; 10}; 11