summaryrefslogtreecommitdiff
path: root/Examples/test-suite/expressions.i
blob: 7b907ec3bcc5f9f3bda1380f65c4386b7bcb8a75 (plain)
1
2
3
4
5
6
7
8
9
10
%module expressions

%inline %{
struct A
{
    A() : k( 20/(5-1) ) {}
    A(int i) : k( 20/(5-1)*i /* comment */ ) {}
    int k;
};
%}