Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
null_pointer.i
blob: f40d6929fdf0b10fe14320b5d60fed4efb6b2405 [
file
] [
log
] [
blame
]
%
module
null_pointer
%
inline
{
struct
A
{};
bool
funk
(
A
*
a
)
{
return
!
a
;
}
A
*
getnull
()
{
return
0
;
}
}