2022-05-09 15:18:53 -07: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 16:10:24 -07:00
|
|
|
use core::unicode::UNICODE_VERSION; //~ ERROR use of unstable library feature `unicode_internals`
|
2022-05-09 15:18:53 -07:00
|
|
|
|
|
|
|
// Known accidental stabilizations with known users
|
|
|
|
// fully stable @ core::mem::transmute
|
|
|
|
use core::intrinsics::transmute; // depended upon by rand_core
|