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 670c731 commit 37f29f3Copy full SHA for 37f29f3
test/IRGen/sensitive.swift
@@ -98,17 +98,17 @@ protocol P {}
98
99
@sensitive
100
struct SensitiveStruct {
101
- var a = 0xdeadbeaf
102
- var b = 0xdeadbeaf
103
- var c = 0xdeadbeaf
+ var a: UInt32 = 0xdeadbeaf
+ var b: UInt32 = 0xdeadbeaf
+ var c: UInt32 = 0xdeadbeaf
104
}
105
106
// A struct which would be address-only also without @sensitive
107
108
struct NonLoadableSensitiveStruct {
109
110
111
112
let p: P
113
114
0 commit comments