mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
226 B
Rust
20 lines
226 B
Rust
// build-pass
|
|
|
|
pub trait Foo {
|
|
type FooAssoc;
|
|
}
|
|
|
|
pub struct Bar<F: Foo> {
|
|
id: F::FooAssoc
|
|
}
|
|
|
|
pub struct Baz;
|
|
|
|
impl Foo for Baz {
|
|
type FooAssoc = usize;
|
|
}
|
|
|
|
static mut MY_FOO: Bar<Baz> = Bar { id: 0 };
|
|
|
|
fn main() {}
|