Skip to content

Commit d64a396

Browse files
committed
Update CHANGELOG
1 parent a6ab861 commit d64a396

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
- Fix printer removing private for empty record. https://github.com/rescript-lang/rescript/pull/7448
3838
- Fix: handle dynamic imports with module aliases. https://github.com/rescript-lang/rescript/pull/7452
3939
- Fix missing unescaping when accessing prop with exotic name. https://github.com/rescript-lang/rescript/pull/7469
40+
- Fix syntax error with mutable nested record. https://github.com/rescript-lang/rescript/pull/7470
4041

4142
#### :house: Internal
4243

Example.res

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
type foo = {bar: int}
2+
3+
type a = {
4+
k: {"x": int},
5+
mutable f: int,
6+
g: {
7+
@as("ad") g1: int,
8+
mutable g2: int
9+
}
10+
}
11+
12+
type b = {
13+
...foo,
14+
mutable f: int,
15+
g: string
16+
}

0 commit comments

Comments
 (0)