I have a use case for a generic funcdef where all functions should be accepted for the parameter.
This is the code that requires it:
Basically i have a scheduler class that can execute a function at a later point in time. The caller passes in a function handle to do this. Right now that function handle parameter is a ?& in parameter type, but this means there is no compile time checking going …