Skip to content

Commit 234260f

Browse files
committed
Add missing test input
1 parent d8936ff commit 234260f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
public protocol ResilientProto {
2+
associatedtype T
3+
func impl()
4+
}
5+
6+
7+
public struct ResilientStruct<T> : ResilientProto {
8+
var x : T?
9+
public init(_ t: T) {
10+
x = t
11+
}
12+
public func impl() {
13+
print(x)
14+
}
15+
}

0 commit comments

Comments
 (0)