-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathprotocol_resilience.swift
39 lines (28 loc) · 1.26 KB
/
protocol_resilience.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// RUN: rm -rf %t && mkdir %t
// RUN: %target-build-swift -emit-library -Xfrontend -enable-resilience -c %S/../Inputs/resilient_protocol.swift -o %t/resilient_protocol.o
// RUN: %target-build-swift -emit-module -Xfrontend -enable-resilience -c %S/../Inputs/resilient_protocol.swift -o %t/resilient_protocol.o
// RUN: %target-build-swift %s -Xlinker %t/resilient_protocol.o -I %t -L %t -o %t/main
// RUN: %target-run %t/main
// REQUIRES: executable_test
//
// Note: protocol resilience in the sense of resiliently adding new
// requirements with default implementations is actually tested in
// validation-test/Evolution/test_protocol_*.
//
// This test just ensures we can call materializeForSet defined in a
// protocol extension from a different resilience domain.
//
import StdlibUnittest
import resilient_protocol
var ResilientProtocolTestSuite = TestSuite("ResilientProtocol")
func increment(_ x: inout Int, by: Int) {
x += by
}
struct OtherConformingType : OtherResilientProtocol { }
ResilientProtocolTestSuite.test("PropertyInProtocolExtension") {
var o = OtherConformingType()
increment(&o.propertyInExtension, by: 5)
increment(&OtherConformingType.staticPropertyInExtension, by: 7)
expectEqual(OtherConformingType.staticPropertyInExtension, 12)
}
runAllTests()