blob: 77c7a6c302c50d8f33020a6659fe2993e9234947 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# tag: cpp
# mode: error
cdef extern from *:
cdef cppclass Foo:
Foo()
Foo(int)
new Foo(1, 2)
_ERRORS = u"""
9:7: Call with wrong number of arguments (expected 1, got 2)
"""
|