Commit e80d0678 authored by Stefan Behnel's avatar Stefan Behnel

extended test case

parent b8239de9
......@@ -98,3 +98,11 @@ def compile_time_DEF():
(1, False, True, True, False)
"""
return INT_VAL, INT_VAL == 0, INT_VAL != 0, INT_VAL == 1, INT_VAL != 1
@cython.test_fail_if_path_exists("//PrimaryCmpNode")
def cascaded_compare():
"""
>>> cascaded_compare()
True
"""
return 1 < 2 < 3 < 4
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