rust/tests/ui/methods/issue-7950.rs

9 lines
212 B
Rust

// tests the good error message, not "missing module Foo" or something else unexpected
struct Foo;
fn main() {
Foo::bar();
//~^ ERROR no function or associated item named `bar` found for struct `Foo`
}