Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
overload_subtype.i
blob: 3d9645d7b15eb4dc81d3823f9e155c7cd29b2b45 [
file
] [
log
] [
blame
]
%
module
overload_subtype
%
inline
%{
class
Foo
{};
class
Bar
:
public
Foo
{};
int
spam
(
Foo
*
f
)
{
return
1
;
}
int
spam
(
Bar
*
b
)
{
return
2
;
}
%}