rust/tests/ui/rust-2018/extern-crate-idiomatic.fixed

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

19 lines
367 B
Rust
Raw Normal View History

// run-pass
// aux-build:edition-lint-paths.rs
// compile-flags:--extern edition_lint_paths
// run-rustfix
// The "normal case". Ideally we would remove the `extern crate` here,
// but we don't.
#![feature(rust_2018_preview)]
2018-05-18 22:13:53 +00:00
#![deny(absolute_paths_not_starting_with_crate)]
extern crate edition_lint_paths;
use edition_lint_paths::foo;
fn main() {
foo();
}