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