rustc/tests/ui/methods/method-not-found-but-doc-alias.rs
2023-09-11 11:26:34 +02:00

12 lines
188 B
Rust

struct Foo;
impl Foo {
#[doc(alias = "quux")]
fn bar(&self) {}
}
fn main() {
Foo.quux();
//~^ ERROR no method named `quux` found for struct `Foo` in the current scope
}