mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
0c3f5cce89
This commit does three things: 1. replaces (the last remaining) never true cfgs by the FALSE cfg 2. fix derive-helper-configured.rs (typo in directive) 3. and comment some current unused #[cfg_attr] (missing revisions)
14 lines
264 B
Rust
14 lines
264 B
Rust
//@ aux-build:edition-lint-paths.rs
|
|
//@ run-rustfix
|
|
//@ compile-flags:--extern edition_lint_paths
|
|
//@ edition:2018
|
|
|
|
#![deny(rust_2018_idioms)]
|
|
#![allow(dead_code)]
|
|
|
|
// The suggestion span should include the attribute.
|
|
|
|
//~^ ERROR unused extern crate
|
|
|
|
fn main() {}
|