From 40f11a98446939e4888f44996226581d1ba2b4e1 Mon Sep 17 00:00:00 2001 From: kitasuke Date: Tue, 30 Apr 2019 22:05:44 +0100 Subject: [PATCH] Fix syntax structure change of ExpressionSegmentSyntax --- lit_tests/output/print_verify_tree.swift.withkind | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lit_tests/output/print_verify_tree.swift.withkind b/lit_tests/output/print_verify_tree.swift.withkind index c777e466b44..02d52fb4311 100644 --- a/lit_tests/output/print_verify_tree.swift.withkind +++ b/lit_tests/output/print_verify_tree.swift.withkind @@ -4,8 +4,8 @@ func foo() { #if swift(>=3.2) - components.append("-b \"\(string[..<string.index(before: string.endIndex)])\"") + components.append("-b \"\(string[..<string.index(before: string.endIndex)])\"") #else - components.append("-b \"\(string.substring(to: string.characters.index(before: string.endIndex)))\"") + components.append("-b \"\(string.substring(to: string.characters.index(before: string.endIndex)))\"") #endif } \ No newline at end of file