rust/src/test/ui/issues/issue-7950.rs
2018-12-25 21:08:33 -07:00

8 lines
210 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 type `Foo`
}