|
2 | 2 |
|
3 | 3 | // https://github.com/apple/swift/issues/52838
|
4 | 4 |
|
5 |
| -// CHECK: sr10438.(file).AuthenticationFlowStateMachine@ |
| 5 | +// CHECK-LABEL: .AuthenticationFlowStateMachine@ |
6 | 6 | // CHECK-NEXT: Requirement signature: <Self where Self == Self.[AuthenticationFlowStateMachine]FlowError.[AuthenticationFlowStateMachineFlowError]StateMachine, Self.[AuthenticationFlowStateMachine]FlowError : AuthenticationFlowStateMachineFlowError, Self.[AuthenticationFlowStateMachine]NonFinalState : AuthenticationFlowStateMachineNonFinalState, Self.[AuthenticationFlowStateMachine]StartState : AuthenticationFlowStateMachineStartState, Self.[AuthenticationFlowStateMachine]FlowError.[AuthenticationFlowStateMachineFlowError]StateMachine == Self.[AuthenticationFlowStateMachine]NonFinalState.[AuthenticationFlowStateMachineNonFinalState]StateMachine, Self.[AuthenticationFlowStateMachine]NonFinalState.[AuthenticationFlowStateMachineNonFinalState]StateMachine == Self.[AuthenticationFlowStateMachine]StartState.[AuthenticationFlowStateMachineStartState]StateMachine>
|
7 | 7 | protocol AuthenticationFlowStateMachine {
|
8 | 8 | associatedtype StartState: AuthenticationFlowStateMachineStartState where StartState.StateMachine == Self
|
9 | 9 | associatedtype NonFinalState: AuthenticationFlowStateMachineNonFinalState where NonFinalState.StateMachine == Self
|
10 | 10 | associatedtype FlowError: AuthenticationFlowStateMachineFlowError where FlowError.StateMachine == Self
|
11 | 11 | }
|
12 | 12 |
|
13 |
| -// CHECK: sr10438.(file).AuthenticationFlowStateMachineFlowError@ |
| 13 | +// CHECK-LABEL: .AuthenticationFlowStateMachineFlowError@ |
14 | 14 | // CHECK-NEXT: Requirement signature: <Self where Self : Error, Self == Self.[AuthenticationFlowStateMachineFlowError]StateMachine.[AuthenticationFlowStateMachine]FlowError, Self.[AuthenticationFlowStateMachineFlowError]StateMachine : AuthenticationFlowStateMachine>
|
15 | 15 | protocol AuthenticationFlowStateMachineFlowError: Error {
|
16 | 16 | associatedtype StateMachine: AuthenticationFlowStateMachine where StateMachine.FlowError == Self
|
17 | 17 | }
|
18 | 18 |
|
19 |
| -// CHECK: sr10438.(file).AuthenticationFlowStateMachineStartState@ |
| 19 | +// CHECK-LABEL: .AuthenticationFlowStateMachineStartState@ |
20 | 20 | // CHECK-NEXT: Requirement signature: <Self where Self == Self.[AuthenticationFlowStateMachineStartState]StateMachine.[AuthenticationFlowStateMachine]StartState, Self.[AuthenticationFlowStateMachineStartState]StateMachine : AuthenticationFlowStateMachine>
|
21 | 21 | protocol AuthenticationFlowStateMachineStartState {
|
22 | 22 | associatedtype StateMachine: AuthenticationFlowStateMachine where StateMachine.StartState == Self
|
23 | 23 | var nonFinalState: StateMachine.NonFinalState { get }
|
24 | 24 | }
|
25 | 25 |
|
26 |
| -// CHECK: sr10438.(file).AuthenticationFlowStateMachineNonFinalState@ |
| 26 | +// CHECK-LABEL: .AuthenticationFlowStateMachineNonFinalState@ |
27 | 27 | // CHECK-NEXT: Requirement signature: <Self where Self == Self.[AuthenticationFlowStateMachineNonFinalState]StateMachine.[AuthenticationFlowStateMachine]NonFinalState, Self.[AuthenticationFlowStateMachineNonFinalState]StateMachine : AuthenticationFlowStateMachine>
|
28 | 28 | protocol AuthenticationFlowStateMachineNonFinalState {
|
29 | 29 | associatedtype StateMachine: AuthenticationFlowStateMachine where StateMachine.NonFinalState == Self
|
|
0 commit comments