blob: 82d8cd03b79c24120e34830607f57dbb16e4163c [file] [log] [blame]
// RUN: rm -rf %t ; mkdir -p %t
// RUN: %target-build-swift %s -o %t/a.out3 -swift-version 3 && %target-run %t/a.out3
// RUN: %target-build-swift %s -o %t/a.out4 -swift-version 4 && %target-run %t/a.out4
import StdlibUnittest
#if swift(>=4)
public typealias ExpectedResultType = [Character]
#else
public typealias ExpectedResultType = [String]
#endif
var Tests = TestSuite("StringFlatMap")
Tests.test("DefaultReturnType") {
var result = ["hello", "world"].flatMap { $0 }
expectType(ExpectedResultType.self, &result)
}
Tests.test("ExplicitTypeContext") {
expectEqualSequence(["hello", "world"],
["hello", "world"].flatMap { $0 } as [String])
expectEqualSequence("helloworld".characters,
["hello", "world"].flatMap { $0 } as [Character])
}
Tests.test("inference") {
let result = [1, 2].flatMap { x in
if String(x) == "foo" {
return "bar"
} else {
return nil
}
}
expectEqualSequence([], result)
}
runAllTests()