rust/tests/ui/rust-2018/issue-54400-unused-extern-crate-attr-span.rs

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

16 lines
352 B
Rust
Raw Normal View History

//@ aux-build:edition-lint-paths.rs
//@ run-rustfix
//@ compile-flags:--extern edition_lint_paths
//@ edition:2018
#![deny(rust_2018_idioms)]
#![allow(dead_code, unexpected_cfgs)]
// The suggestion span should include the attribute.
#[cfg(not(FALSE))] //~ HELP remove it
extern crate edition_lint_paths;
//~^ ERROR unused extern crate
fn main() {}