1 %module enum_var
2 
3 %inline %{
4 
5 enum Fruit { APPLE, PEAR };
6 Fruit test;
7 
8 %}
9