Add overloading tests for interface feature
This commit is contained in:
parent
fc4be01106
commit
d0fb0ae801
2 changed files with 12 additions and 1 deletions
|
|
@ -8,7 +8,11 @@ DECLARE_INTERFACE_RENAME(IC, C, IC)
|
|||
#endif
|
||||
|
||||
%inline %{
|
||||
struct IA { virtual void ia() {} };
|
||||
struct IA {
|
||||
virtual void ia() {};
|
||||
virtual void ia(const char *s, bool b = true) {}
|
||||
virtual void ia(int i) {}
|
||||
};
|
||||
struct IB { virtual void ib() {} };
|
||||
struct IC : IA, IB {};
|
||||
struct D : IC {};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue