mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
14 lines
195 B
Swift
14 lines
195 B
Swift
// RUN: not %target-swift-frontend -typecheck %s
|
|
|
|
@propertyWrapper struct A {
|
|
var wrappedValue: Int
|
|
}
|
|
|
|
@propertyWrapper struct B {
|
|
var wrappedValue: Int
|
|
}
|
|
|
|
struct C {
|
|
@A @B var foo: Int?
|
|
}
|