Skip to content

Commit 741b71a

Browse files
committed
fix indentation issues
1 parent c8cd7a6 commit 741b71a

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

test/Interpreter/keypath.swift

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,33 @@ class MyLabel {
66
}
77

88
class Controller {
9-
9+
1010
fileprivate let label = MyLabel()
1111
fileprivate var secondLabel: MyLabel? = MyLabel()
1212
public var thirdLabel: MyLabel? = MyLabel()
13-
14-
subscript(string: String) -> String {
15-
get {
16-
""
17-
}
18-
set {
19-
20-
}
13+
14+
subscript(string: String) -> String {
15+
get {
16+
""
2117
}
22-
23-
subscript(int int: Int, str str: String, otherInt: Int) -> Int {
24-
get {
25-
0
26-
}
27-
set {
28-
29-
}
18+
set {
19+
3020
}
31-
21+
}
22+
23+
subscript(int int: Int, str str: String, otherInt: Int) -> Int {
24+
get {
25+
0
26+
}
27+
set {
28+
29+
}
30+
}
31+
3232
}
3333

3434
struct S {
35-
var a: Int
35+
var a: Int
3636
}
3737

3838
struct Container<V> {

0 commit comments

Comments
 (0)