1 // bindgen-flags: --rust-target 1.33 2 3 class TestOverload { 4 // This one shouldnt' be generated. 5 TestOverload(); 6 public: 7 /// Calling this should use `mem::unintialized()` and not `MaybeUninit()` as only rust 1.36 includes that. 8 TestOverload(int); 9 /// Calling this should use `mem::unintialized()` and not `MaybeUninit()` as only rust 1.36 includes that. 10 TestOverload(double); 11 }; 12 13 class TestPublicNoArgs { 14 public: 15 TestPublicNoArgs(); 16 }; 17