aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/not_c_keywords.i
blob: 013575bc6bd6f905987106973fd531ade9e6f080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%module not_c_keywords

%extend ComplexStruct {
void init() {
  $self->complex = 123;
}
}

%inline %{
struct ComplexStruct {
  int complex; /* complex as variable name */
};
%}