Files
swift-mirror/test/refactoring/LocalizeString/Outputs/callexpr/L2.swift.expected
Argyrios Kyrtzidis 60a91bb736 [refactoring] Upstreaming the implementation for Swift local refactoring (#11568)
[refactoring] Upstreaming the implementation for Swift local refactoring
2017-08-22 16:50:16 -07:00

9 lines
154 B
Plaintext

func testStringLiteral() -> String {
return NSLocalizedString("abc", comment: "").foo()
}
extension String {
func foo() -> String { return self }
}