mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
263 B
Swift
14 lines
263 B
Swift
public struct EmptyResilientStruct {
|
|
public init() {}
|
|
|
|
public var computed: Int {
|
|
return 1337
|
|
}
|
|
|
|
public mutating func mutate() {}
|
|
}
|
|
|
|
public var emptyGlobal = EmptyResilientStruct()
|
|
|
|
@_fixed_layout public var fixedLayoutGlobal = EmptyResilientStruct()
|