blob: 7add8afee437f54c956ffa91038e9c61e94af5f9 [file] [log] [blame]
// 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`
}