Skip to content

Commit d1e61a3

Browse files
committed
[Test] Add test case for SR-11600 to compiler_crashers_2_fixed
1 parent 247e0a7 commit d1e61a3

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// RUN: not %target-swift-frontend -typecheck %s
2+
3+
@propertyWrapper struct A {
4+
var wrappedValue: Int
5+
}
6+
7+
@propertyWrapper struct B {
8+
var wrappedValue: Int
9+
}
10+
11+
struct C {
12+
@A @B var foo: Int?
13+
}

0 commit comments

Comments
 (0)