Files
rust/tests/ui/imports/import3.rs

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

4 lines
82 B
Rust
Raw Normal View History

use main::bar; //~ ERROR unresolved import `main`
2020-12-07 02:01:35 +03:00
fn main() { println!("foo"); }