Commit a3337039 authored by gsamain's avatar gsamain

Amend template test (new invocation)

parent 0c0e15a1
......@@ -13,4 +13,6 @@ cdef cypclass SomeMemory[T, U]:
cpdef bag():
cdef SomeMemory[int, double] o = SomeMemory[int, double](1, 2.3)
return str(o.a) + '\n' + str(o.b) + '\n' + str(o.first()) + '\n' + str(o.second())
\ No newline at end of file
cdef SomeMemory[int, int] b = new SomeMemory[int, int]()
del b
return str(o.a) + '\n' + str(o.b) + '\n' + str(o.first()) + '\n' + str(o.second())
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