swig/Examples/test-suite/enum_var.i
William S Fulton 8143e59d68 Revert "scilab: implement enum_var test"
This reverts commit fbe6c13267.

It looks like an accidental change to me
2014-06-26 20:30:24 +01:00

8 lines
74 B
OpenEdge ABL

%module enum_var
%inline %{
enum Fruit { APPLE, PEAR };
Fruit test;
%}