Sign in
fuchsia
/
third_party
/
rust
/
02856110968903bf50a32184db200ccd9b6cc8b6
/
.
/
tests
/
ui
/
issues
/
issue-7950.rs
blob: d3dcb3380bbccbf89baa5f640e1cf2a75ee572c7 [
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 struct `Foo`
}