I’m working on an experimental programming language that has global polymorphic type inference.
I recently got the algorithm working sufficiently well to correctly type the bits of sample code I’m throwing at it. I’m now looking for something more complex that will exercise the edge cases.
Can anyone point me at a source of really gnarly and horrible code fragments that I can use for this? I’m sure the functional programming world has plenty. I’m particularly looking for examples that do evil things with function recursion, as I need to check to make sure that function expansion terminates correctly, but anything’s good — I need to build a test suite. Any suggestions?
My language is largely imperative, but any ML-style code ought to be easy to convert.
My general strategy is actually to approach it from the opposite direction — ensure that it rejects incorrect things!
That said, here are some standard “confirmation” tests I usually use:
The eager fix point combinator (unashamedly stolen from here):
Obvious mutual recursion:
Check out those deeply nested let expressions too:
Deeply nested higher order functions!
I don’t know if you have to have the value restriction in order to incorporate mutable references. If so, see what happens:
You might need to implement
mapandrevin the standard way 🙂Then with actual references lying around (stolen from here):
Hope these help in some way. Make sure to try to build a set of regression tests you can re-run in some automatic fashion to ensure that all of your type inference behaves correctly through all changes you make 🙂