2018-09-22 15:51:29 -05:00
|
|
|
//@ aux-build:edition-lint-paths.rs
|
|
|
|
//@ run-rustfix
|
2024-04-09 16:16:57 -05:00
|
|
|
//@ compile-flags:--extern edition_lint_paths
|
2018-09-22 15:51:29 -05:00
|
|
|
//@ edition:2018
|
|
|
|
|
|
|
|
#![deny(rust_2018_idioms)]
|
2024-04-06 17:33:37 -05:00
|
|
|
#![allow(dead_code, unexpected_cfgs)]
|
2018-09-22 15:51:29 -05:00
|
|
|
|
|
|
|
// The suggestion span should include the attribute.
|
|
|
|
|
2024-04-09 16:16:57 -05:00
|
|
|
#[cfg(not(FALSE))] //~ HELP remove it
|
2018-09-22 15:51:29 -05:00
|
|
|
extern crate edition_lint_paths;
|
|
|
|
//~^ ERROR unused extern crate
|
|
|
|
|
|
|
|
fn main() {}
|