1 // bindgen-flags: --no-derive-debug --no-derive-copy --default-enum-style rust --no-layout-tests 2 3 /** <div rustbindgen derive="Debug"></div> */ 4 struct my_type; 5 6 /** <div rustbindgen derive="Clone"></div> */ 7 struct my_type; 8 9 struct my_type { 10 int a; 11 }; 12 13 /** 14 * <div rustbindgen derive="Debug"></div> 15 * <div rustbindgen derive="Clone"></div> 16 */ 17 struct my_type2; 18 19 struct my_type2 { 20 unsigned a; 21 }; 22 23 /** 24 * <div rustbindgen derive="Debug" derive="Clone"></div> 25 */ 26 struct my_type3 { 27 unsigned long a; 28 }; 29