1
Fork 0

rustdoc: move ICE test to rustdoc-ui

This commit is contained in:
Michael Howell 2023-10-16 18:02:11 -07:00
parent 43b493ebc0
commit 94b39e8c86

View file

@ -0,0 +1,14 @@
// Test that associated item impls on primitive types don't crash rustdoc
// https://github.com/rust-lang/rust/issues/31808
#![crate_name="issue_31808"]
pub trait Foo {
const BAR: usize;
type BAZ;
}
impl Foo for () {
const BAR: usize = 0;
type BAZ = usize;
}