2024-09-12 13:38:24 -07:00
|
|
|
// https://github.com/rust-lang/rust/issues/100679
|
2022-08-18 15:13:28 -07:00
|
|
|
#![crate_name="foo"]
|
|
|
|
|
|
|
|
pub struct Vec;
|
|
|
|
|
|
|
|
pub struct Slice;
|
|
|
|
|
|
|
|
impl std::ops::Deref for Vec {
|
|
|
|
type Target = Slice;
|
|
|
|
fn deref(&self) -> &Slice {
|
|
|
|
&Slice
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has foo/struct.Vec.html '//*[@class="sidebar-elems"]//section//li/a[@href="#method.is_empty"]' \
|
2022-08-18 15:13:28 -07:00
|
|
|
// "is_empty"
|
|
|
|
impl Vec {
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has foo/struct.Vec.html '//*[@class="sidebar-elems"]//section//li/a[@href="#method.is_empty-1"]' \
|
2022-08-18 15:13:28 -07:00
|
|
|
// "is_empty"
|
2024-06-21 14:03:08 +02:00
|
|
|
//@ has foo/struct.Slice.html '//*[@class="sidebar-elems"]//section//li/a[@href="#method.is_empty"]' \
|
2022-08-18 15:13:28 -07:00
|
|
|
// "is_empty"
|
|
|
|
impl Slice {
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|