mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
314 B
Rust
15 lines
314 B
Rust
// run-pass
|
|
#![allow(unused_imports)]
|
|
// Test transitive analysis for associated types. Collected types
|
|
// should be normalized and new obligations generated.
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
use std::borrow::{ToOwned, Cow};
|
|
|
|
fn assert_send<T: Send>(_: T) {}
|
|
|
|
fn main() {
|
|
assert_send(Cow::Borrowed("foo"));
|
|
}
|