mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
60a91bb736
[refactoring] Upstreaming the implementation for Swift local refactoring
7 lines
135 B
Plaintext
7 lines
135 B
Plaintext
func testStringLiteral() -> String {
|
|
let name = "Jason"
|
|
print("Hello, \(name)!")
|
|
return NSLocalizedString("abc", comment: "")
|
|
}
|
|
|