Commit 37d48844 authored by Stefan Behnel's avatar Stefan Behnel

fix #682: compiler crash on auto_cpdef redefinition

parent 350afcaf
......@@ -1399,6 +1399,7 @@ class AlignFunctionDefinitions(CythonTransform):
return self.visit_CClassDefNode(node.as_cclass(), pxd_def)
else:
error(node.pos, "'%s' redeclared" % node.name)
if pxd_def.pos:
error(pxd_def.pos, "previous declaration here")
return None
else:
......@@ -1420,6 +1421,7 @@ class AlignFunctionDefinitions(CythonTransform):
if pxd_def:
if not pxd_def.is_cfunction:
error(node.pos, "'%s' redeclared" % node.name)
if pxd_def.pos:
error(pxd_def.pos, "previous declaration here")
return None
node = node.as_cfunction(pxd_def)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment