24 lines
385 B
Rust
24 lines
385 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
// Test transitive analysis for associated types. Collected types
|
|
// should be normalized and new obligations generated.
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
trait Foo {
|
|
type A;
|
|
fn foo(&self) {}
|
|
}
|
|
|
|
impl Foo for usize {
|
|
type A = usize;
|
|
}
|
|
|
|
struct Bar<T: Foo> { inner: T::A }
|
|
|
|
fn is_send<T: Send>() {}
|
|
|
|
fn main() {
|
|
is_send::<Bar<usize>>();
|
|
}
|