mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-08-27 05:31:15 -04:00
c1e7498e84
Signed-off-by: a30054014 <aipeng3@huawei.com>
14 lines
193 B
C++
14 lines
193 B
C++
|
|
class TestOverload {
|
|
// This one shouldn't be generated.
|
|
TestOverload();
|
|
public:
|
|
TestOverload(int);
|
|
TestOverload(double);
|
|
};
|
|
|
|
class TestPublicNoArgs {
|
|
public:
|
|
TestPublicNoArgs();
|
|
};
|