mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
9 lines
365 B
Swift
9 lines
365 B
Swift
func testStringConcatenation() {
|
|
let firstName = "Jason"
|
|
let bornYear = "1888"
|
|
let _ = "Mr. " + firstName + bornYear
|
|
}
|
|
// RUN: rm -rf %t.result && mkdir -p %t.result
|
|
// RUN: %refactor -strings-concatenation-to-interpolation -source-filename %s -pos=4:11 -end-pos=4:40 > %t.result/L4.swift
|
|
// RUN: diff -u %S/Outputs/basic/L4.swift.expected %t.result/L4.swift
|