summaryrefslogtreecommitdiff
path: root/Examples/test-suite/errors/swig_pythoncode_bad.i
blob: f1d497618d6129a4a0810e9309fd5760920582ed (plain)
1
2
3
4
5
6
7
%module xxx

%pythoncode %{
    def foo():
	a = 1 # This line starts with a tab instead of 8 spaces.
        return 2
%}