rust/src/test/ui/issues/issue-7950.rs

9 lines
210 B
Rust
Raw Normal View History

2015-03-16 02:33:12 -05:00
// 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`
2015-03-16 02:33:12 -05:00
}