blob: 7c6262d4172f77b859395454734249e155175132 [file] [log] [blame]
// bindgen-flags: --rust-target 1.33
class TestOverload {
// This one shouldnt' be generated.
TestOverload();
public:
/// Calling this should use `mem::unintialized()` and not `MaybeUninit()` as only rust 1.36 includes that.
TestOverload(int);
/// Calling this should use `mem::unintialized()` and not `MaybeUninit()` as only rust 1.36 includes that.
TestOverload(double);
};
class TestPublicNoArgs {
public:
TestPublicNoArgs();
};