rust/tests/rustdoc-json/generic_impl.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
435 B
Rust
Raw Normal View History

2022-06-13 13:05:21 +00:00
// Regression test for <https://github.com/rust-lang/rust/issues/97986>.
2022-08-17 10:55:09 +00:00
// @has "$.index[*][?(@.name=='f')]"
// @has "$.index[*][?(@.name=='AssocTy')]"
// @has "$.index[*][?(@.name=='AssocConst')]"
2022-06-13 13:05:21 +00:00
pub mod m {
pub struct S;
}
pub trait F {
type AssocTy;
const AssocConst: usize;
fn f() -> m::S;
}
impl<T> F for T {
type AssocTy = u32;
const AssocConst: usize = 0;
fn f() -> m::S {
m::S
}
}