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 e060363 commit fc0eca5Copy full SHA for fc0eca5
validation-test/Serialization/rdar80449046.swift
@@ -0,0 +1,13 @@
1
+// RUN: %empty-directory(%t)
2
+// RUN: %target-swift-frontend -emit-module %s
3
+
4
+@propertyWrapper
5
+public struct TestWrapper {
6
+ public var wrappedValue: Int
7
+ public init(wrappedValue: Int) { self.wrappedValue = wrappedValue }
8
+}
9
10
+@frozen public struct Test {
11
+ @TestWrapper public var x: Int = 42
12
13
0 commit comments