summaryrefslogtreecommitdiffstats
path: root/tests/ui/rust-2018/issue-54400-unused-extern-crate-attr-span.rs
blob: a948baee53c4c96350e97fb085da7cc2a918e28e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// aux-build:edition-lint-paths.rs
// run-rustfix
// compile-flags:--extern edition_lint_paths --cfg blandiloquence
// edition:2018

#![deny(rust_2018_idioms)]
#![allow(dead_code)]

// The suggestion span should include the attribute.

#[cfg(blandiloquence)] //~ HELP remove it
extern crate edition_lint_paths;
//~^ ERROR unused extern crate

fn main() {}