summaryrefslogtreecommitdiff
path: root/Examples/test-suite/ruby_rdata.i
blob: 06af06f3644553860d0795baa0b552eb102ecf41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
%module ruby_rdata

%{

  class C {};

  int take_proc_or_cpp_obj_and_ret_1(VALUE obj) {
    return 1;
  }

  int take_proc_or_cpp_obj_and_ret_1(C c) {
    return 1;
  }

%}

class C {};

int take_proc_or_cpp_obj_and_ret_1(VALUE);
int take_proc_or_cpp_obj_and_ret_1(C);