mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-17 01:13:11 +00:00
15 lines
282 B
Rust
15 lines
282 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.
|
||
|
|
||
|
|
||
|
//~^ ERROR unused extern crate
|
||
|
|
||
|
fn main() {}
|