Skip to content

Commit f73a6b3

Browse files
committed
Add CHANGELOG entry for local property wrappers
1 parent 44e4285 commit f73a6b3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@ CHANGELOG
2828
Swift 5.4
2929
---------
3030

31+
* Property wrappers now work in local contexts, making the following valid:
32+
33+
```swift
34+
@propertyWrapper
35+
struct Wrapper<T> {
36+
var wrappedValue: T
37+
}
38+
39+
func test() {
40+
@Wrapper var value = 10
41+
}
42+
```
43+
3144
* [SR-10069][]:
3245

3346
Function overloading now works in local contexts, making the following valid:

0 commit comments

Comments
 (0)