From c0b7c54671407a580353db785b3b04617a731a8f Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Thu, 8 Apr 2010 19:44:22 -0700 Subject: [PATCH] Test case for #524 --- tests/errors/cpp_no_constructor.pyx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/errors/cpp_no_constructor.pyx diff --git a/tests/errors/cpp_no_constructor.pyx b/tests/errors/cpp_no_constructor.pyx new file mode 100644 index 00000000..de752478 --- /dev/null +++ b/tests/errors/cpp_no_constructor.pyx @@ -0,0 +1,10 @@ +cdef extern from *: + cdef cppclass Foo: + Foo() + Foo(int) + +new Foo(1, 2) + +_ERRORS = u""" +6:7: no suitable method found +""" -- 2.26.2