summaryrefslogtreecommitdiff
path: root/Examples/test-suite/r_double_delete.i
blob: 9743d0454d5606017177f949a9b205256bac8768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%module r_double_delete

%inline %{

class Foo {
private:
  double r;
public:
  Foo(double rin) : r(rin) {}; 
};
%}