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
Check the runtime representation of variants matches implementation and interface.
```
// module M : {
// @tag("abc")
// type t = | A(int)
// } =
// {
// type t = | A(int)
// }
module M : {
type t = | @as("abc") A
} =
{
type t = | A
}
```
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,10 @@
12
12
13
13
# 11.0.0-rc.8 (Unreleased)
14
14
15
+
16
+
#### :bug: Bug Fix
17
+
Add missing check that the runtime representation of variants matches implementation and interface. https://github.com/rescript-lang/rescript-compiler/pull/6513/files
0 commit comments