Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
overload_copy.i
blob: 238d011a6a9bd7654428ae33471a2e9d11d0431e [
file
] [
log
] [
blame
]
// Tests copy constructor
%
module
overload_copy
%
inline
%{
class
Foo
{
public
:
Foo
()
{
}
Foo
(
const
Foo
&)
{
}
};
%}