Skip to content

Commit

Permalink
Remove unnecessary kind annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
rtjoa committed Dec 26, 2024
1 parent 5b55d46 commit b7d41f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testsuite/tests/typing-layouts-unboxed-records/recursive.ml
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,11 @@ Error: The definition of "bad" is recursive without boxing:
"bad" contains "bad"
|}]

type ('a : any) record_id = #{ a : 'a }
type ('a : any) alias_id = 'a
type 'a record_id = #{ a : 'a }
type 'a alias_id = 'a
[%%expect{|
type 'a record_id = #{ a : 'a; }
type ('a : any) alias_id = 'a
type 'a alias_id = 'a
|}]

type bad = bad record_id
Expand Down

0 comments on commit b7d41f8

Please sign in to comment.