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 efbfaac commit 9c010f4Copy full SHA for 9c010f4
CHANGELOG.md
@@ -52,6 +52,19 @@ Swift Next
52
Swift 5.4
53
---------
54
55
+* Property wrappers now work in local contexts, making the following valid:
56
+
57
+ ```swift
58
+ @propertyWrapper
59
+ struct Wrapper<T> {
60
+ var wrappedValue: T
61
+ }
62
63
+ func test() {
64
+ @Wrapper var value = 10
65
66
+ ```
67
68
* [SR-10069][]:
69
70
Function overloading now works in local contexts, making the following valid:
0 commit comments