rust/tests/ui/lint/force-warn/ice-free.rs
2025-06-07 00:49:29 -07:00

10 lines
250 B
Rust

//@ compile-flags: --force-warn pub_use_of_private_extern_crate
//@ check-pass
extern crate core;
pub use core as reexported_core;
//~^ warning: extern crate `core` is private
//~| warning: this was previously accepted by the compiler
fn main() {}