We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44e4285 commit f73a6b3Copy full SHA for f73a6b3
CHANGELOG.md
@@ -28,6 +28,19 @@ CHANGELOG
28
Swift 5.4
29
---------
30
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
44
* [SR-10069][]:
45
46
Function overloading now works in local contexts, making the following valid:
0 commit comments