Nikola Beneš
Nikola Beneš
The following code makes rapidcheck segfault: ```Cpp void foo() { int* ptr = nullptr; RC_ASSERT(ptr != nullptr); } int main() { rc::check("foo", foo); } ```
# Bug report ### Bug description: ```python from functools import update_wrapper def my_type(*args): pass t = update_wrapper(my_type, type) ``` This works on Python ≤ 3.11, and I think this is...
## The Problem ```Raku use experimental :cached; sub foo($s) is cached { say "not cached: $s" } foo(.Set) for ^100; ``` ## Expected Behavior One line of output with `not...