// Test that we do not consider parameter types to be sendable without // an explicit trait bound. fn foo() { is_send::() //~ ERROR E0277 } fn is_send() { } fn main() { }