mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 20:35:53 +00:00
11 lines
197 B
Rust
11 lines
197 B
Rust
//@ aux-build:edition-extern-crate-allowed.rs
|
|
//@ edition:2015
|
|
//@ check-pass
|
|
|
|
#![warn(rust_2018_idioms)]
|
|
|
|
extern crate edition_extern_crate_allowed;
|
|
//~^ WARNING unused extern crate
|
|
|
|
fn main() {}
|