Files
2019-08-04 21:38:19 -05:00

15 lines
144 B
OpenEdge ABL

// A function that passes arrays by reference
%module arrayref
%inline %{
void foo(const int (&x)[10]) {
}
void bar(int (&x)[10]) {
}
%}