Sign in
fuchsia
/
third_party
/
swig
/
5cc90e6f5b321cae8e7290dc055d3e13543a2155
/
.
/
Examples
/
test-suite
/
not_c_keywords.i
blob: 013575bc6bd6f905987106973fd531ade9e6f080 [
file
] [
log
] [
blame
]
%
module
not_c_keywords
%
extend
ComplexStruct
{
void
init
()
{
$self
->
complex
=
123
;
}
}
%
inline
%{
struct
ComplexStruct
{
int
complex
;
/* complex as variable name */
};
%}