Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
r_double_delete.i
blob: 9743d0454d5606017177f949a9b205256bac8768 [
file
] [
log
] [
blame
]
%
module
r_double_delete
%
inline
%{
class
Foo
{
private
:
double
r
;
public
:
Foo
(
double
rin
)
:
r
(
rin
)
{};
};
%}