mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
340 B
Rust
18 lines
340 B
Rust
//@ 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.
|
|
|
|
#![deny(absolute_paths_not_starting_with_crate)]
|
|
|
|
extern crate edition_lint_paths;
|
|
|
|
use edition_lint_paths::foo;
|
|
|
|
fn main() {
|
|
foo();
|
|
}
|