Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
constructor_rename.i
blob: 401b07d65aabbad486696784a3761463ec2715dc [
file
] [
log
] [
blame
]
%
module
constructor_rename
%{
struct
Foo
{
Foo
()
{}
};
%}
struct
Foo
{
%
rename
(
RenamedConstructor
)
Foo
();
Foo
()
{}
};