blob: 80c416111d6f214cd85619872419411771cb0e73 [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"
}