blob: 99b79f44648b25cfe98d78b1ebe0f96b53f13959 (
plain)
1
2
3
4
5
6
7
8
9
|
//@ 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() {}
|