mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-08-26 21:21:14 -04:00
14 lines
193 B
C++
14 lines
193 B
C++
|
|
class TestOverload {
|
|
// This one shouldnt' be generated.
|
|
TestOverload();
|
|
public:
|
|
TestOverload(int);
|
|
TestOverload(double);
|
|
};
|
|
|
|
class TestPublicNoArgs {
|
|
public:
|
|
TestPublicNoArgs();
|
|
};
|