summaryrefslogtreecommitdiff
path: root/Examples/test-suite/errors/cpp_missing_rparenthesis.i
blob: 5d0627e86f7e0466e207ea90f5f3601bb8eb112c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%module xxx

%inline %{
class Klass {
Klass(int i) : m_i(
{
}
};
%}

void something() {
}