summaryrefslogtreecommitdiffstats
path: root/tests/ui/rust-2018/extern-crate-idiomatic.fixed
blob: 6a0639099b145415d52c9b4afd5447374efa6aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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();
}