Skip to content

Commit 6e423a0

Browse files
committed
fix the linux side of a #if
1 parent 684e660 commit 6e423a0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: test/1_stdlib/TypeName.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ printTypeName(B.self)
6363
printTypeName(B2.self)
6464
printTypeName(B3.self)
6565
#else
66-
print("@convention(block) () -> ()")
67-
print("() -> @convention(block) () -> ()")
68-
print("(@convention(block) () -> ()) -> ()")
66+
print("@convention(block) (()) -> ()")
67+
print("() -> @convention(block) (()) -> ()")
68+
print("((@convention(block) (()) -> ())) -> ()")
6969
#endif
7070
// CHECK-NEXT: @convention(block) (()) -> ()
7171
// CHECK-NEXT: (()) -> @convention(block) (()) -> ()

0 commit comments

Comments
 (0)