You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ grift --type-based-casts p1.grift
$ ./a.out
Implicit cast in ascription on expression at p1.grift:2:2
$ grift --coercions p1.grift
$ ./a.out
Implicit cast in ascription on expression at p1.grift:1:1
Here is the content of p1.grift
((ann
(ann
(ann
(lambda ([x : (Tuple Int Int)]) x)
((Tuple Int Int) -> (Tuple Dyn Dyn)))
((Tuple Int Int) -> (Tuple Dyn Bool)))
((Tuple Int Int) -> (Tuple Bool Bool)))
(tuple 12))
The text was updated successfully, but these errors were encountered:
This seems like a fundamental problem with the way tuple coercions are currently implemented. Good to know! We will need to talk about this on Tuesday.
The blame labels are different.
Here is the content of
p1.grift
The text was updated successfully, but these errors were encountered: