rust/tests/ui/imports/issue-2937.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
116 B
Rust
Raw Normal View History

2016-08-22 00:57:10 -05:00
use m::f as x; //~ ERROR unresolved import `m::f` [E0432]
//~^ no `f` in `m`
mod m {}
fn main() {}