Skip to content

Commit 251f4a1

Browse files
committed
Fix indentation in test/Generics/same_type_requirements_in_protocol.swift
1 parent 3a4bb96 commit 251f4a1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/Generics/same_type_requirements_in_protocol.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@ public protocol P3 {
2020
// CHECK-LABEL: same_type_requirements_in_protocol.(file).Q1@
2121
// CHECK-NEXT: Requirement signature: <Self>
2222
public protocol Q1 {
23-
associatedtype X
24-
associatedtype Y
23+
associatedtype X
24+
associatedtype Y
2525
}
2626

2727
// CHECK-LABEL: same_type_requirements_in_protocol.(file).Q2@
2828
// CHECK-NEXT: Requirement signature: <Self where Self == Self.[Q2]Z.[Q3]B, Self.[Q2]Z : Q3>
2929
public protocol Q2 {
30-
associatedtype Y
31-
associatedtype Z: Q3 where Z.B == Self
30+
associatedtype Y
31+
associatedtype Z: Q3 where Z.B == Self
3232
}
3333

3434
// CHECK-LABEL: same_type_requirements_in_protocol.(file).Q3@
3535
// CHECK-NEXT: Requirement signature: <Self where Self.[Q3]A : Q2, Self.[Q3]B : Q1, Self.[Q3]A.[Q1]Y == Self.[Q3]B.[Q1]Y>
3636
public protocol Q3 {
37-
associatedtype A: Q2
38-
associatedtype B: Q1 where A.Y == B.Y
37+
associatedtype A: Q2
38+
associatedtype B: Q1 where A.Y == B.Y
3939
}
4040

4141
// CHECK-LABEL: same_type_requirements_in_protocol.(file).R1@

0 commit comments

Comments
 (0)