mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
12 lines
198 B
Rust
12 lines
198 B
Rust
// Test that associated item impls on primitive types don't crash rustdoc
|
|
|
|
pub trait Foo {
|
|
const BAR: usize;
|
|
type BAZ;
|
|
}
|
|
|
|
impl Foo for () {
|
|
const BAR: usize = 0;
|
|
type BAZ = usize;
|
|
}
|