mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
16 lines
360 B
Rust
16 lines
360 B
Rust
//@ 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() {}
|