mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
15 lines
271 B
Swift
15 lines
271 B
Swift
// RUN: not %target-swift-frontend -typecheck %s
|
|
|
|
// https://github.com/apple/swift/issues/57802
|
|
|
|
public struct {
|
|
@UserDefault()
|
|
public static var region: String
|
|
}
|
|
|
|
@propertyWrapper
|
|
public struct UserDefault {
|
|
init() {}
|
|
public var wrappedValue: String
|
|
}
|