2022-05-09 17:18:53 -05:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
extern crate core;
|
|
|
|
|
|
|
|
// Known accidental stabilizations with no known users, slated for un-stabilization
|
|
|
|
// fully stable @ core::char::UNICODE_VERSION
|
2024-11-02 18:10:24 -05:00
|
|
|
use core::unicode::UNICODE_VERSION; //~ ERROR use of unstable library feature `unicode_internals`
|
2022-05-09 17:18:53 -05:00
|
|
|
|
|
|
|
// Known accidental stabilizations with known users
|
|
|
|
// fully stable @ core::mem::transmute
|
|
|
|
use core::intrinsics::transmute; // depended upon by rand_core
|