2018-05-23 16:20:40 -04:00
|
|
|
//@ run-pass
|
|
|
|
//@ aux-build:edition-lint-paths.rs
|
2018-08-24 18:51:32 +03:00
|
|
|
//@ compile-flags:--extern edition_lint_paths
|
2018-05-23 16:20:40 -04:00
|
|
|
//@ run-rustfix
|
|
|
|
|
|
|
|
// The "normal case". Ideally we would remove the `extern crate` here,
|
|
|
|
// but we don't.
|
|
|
|
|
2018-05-19 01:13:53 +03:00
|
|
|
#![deny(absolute_paths_not_starting_with_crate)]
|
2018-05-23 16:20:40 -04:00
|
|
|
|
|
|
|
extern crate edition_lint_paths;
|
|
|
|
|
|
|
|
use edition_lint_paths::foo;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
foo();
|
|
|
|
}
|