blob: c18843be3b9493562c6ef3cdb9c70f6ff7bcc48d [file] [log] [blame]
// RUN: %target-parse-verify-swift
func simple_ret(_ s: String, i: Int) -> String {
return "A string \"\(s)\" and an int \(i)"
}
func in_context(_ s: String, i: Int) -> String {
let h = "\(s) = \(i)"
return h
}
func string_literals(_ s: String, i: Int) -> String {
return "outer \(s)\(i) close"
}