hazel icon indicating copy to clipboard operation
hazel copied to clipboard

Hazel, a live functional programming environment with typed holes

Results 339 hazel issues
Sort by recently updated
recently updated
newest added

The following code should have a static error `Elements have inconsistent types: ... `in 5th line, but is mistakenly accepted in Hazel: ![image](https://github.com/hazelgrove/hazel/assets/113280601/50905b04-91d7-4ab4-9562-cd4d3109a5ee) ```haskell type A = +A in let...

bug

Replaces https://github.com/hazelgrove/hazel/pull/1263. In-progress PR to add a theorem keyword in the style of let-equals-in to Hazel. Based on [stepper-rewrites](https://github.com/hazelgrove/hazel/tree/stepper-rewrites) this time.

I expect both examples to work alright but one gives exceptions and the other is stucked.

bug

![image](https://github.com/hazelgrove/hazel/assets/31668468/06cf6dda-9cc6-495b-a03b-1546eb8b45e2) This example should ideally have a static error on the X because it doesn't have an argument. ``` type T = +X(Int) in let X = fun x ->...