2024-09-12 15:38:24 -05:00
|
|
|
// https://github.com/rust-lang/rust/issues/100679
|
2022-08-18 17:13:28 -05: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 07:03:08 -05:00
|
|
|
//@ has foo/struct.Vec.html '//*[@class="sidebar-elems"]//section//li/a[@href="#method.is_empty"]' \
|
2022-08-18 17:13:28 -05:00
|
|
|
// "is_empty"
|
|
|
|
impl Vec {
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/struct.Vec.html '//*[@class="sidebar-elems"]//section//li/a[@href="#method.is_empty-1"]' \
|
2022-08-18 17:13:28 -05:00
|
|
|
// "is_empty"
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/struct.Slice.html '//*[@class="sidebar-elems"]//section//li/a[@href="#method.is_empty"]' \
|
2022-08-18 17:13:28 -05:00
|
|
|
// "is_empty"
|
|
|
|
impl Slice {
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|