This depends on whether Foundation is imported. We have:
"foo".contains("") // ⟹ true
but
import Foundation
"foo".contains("") // ⟹ false
This is not expected.
This depends on whether Foundation is imported. We have:
"foo".contains("") // ⟹ true
but
import Foundation
"foo".contains("") // ⟹ false
This is not expected.