Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
typemap_delete.i
blob: fa62803cbd7acd28e8350b0d0cfdeb822ea3f1fd [
file
] [
log
] [
blame
]
%
module
typemap_delete
#ifdef
SWIGOCAML
%
warnfilter
(
SWIGWARN_PARSE_KEYWORD
)
val
;
#endif
%
typemap
(
in
)
Rect
*
(
Rect
temp
)
{
$1
=
0
;
will_not_compile
}
%
typemap
(
in
)
Rect
*;
%
inline
%{
struct
Rect
{
int
val
;
Rect
(
int
v
)
:
val
(
v
)
{}
};
%}