rustdoc: PointeeSized bounds with extern types

As before, updating types using extern types to use `PointeeSized`
bounds.
This commit is contained in:
David Wood 2025-04-10 13:49:44 +00:00
parent da47753496
commit 388a99ea26
No known key found for this signature in database

View file

@ -10,7 +10,7 @@ impl ExtType {
pub fn do_something(&self) {}
}
pub trait Trait {}
pub trait Trait: std::marker::PointeeSized {}
//@ has foreigntype/trait.Trait.html '//a[@class="foreigntype"]' 'ExtType'
impl Trait for ExtType {}