mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 21:06:15 +00:00
Make the following API stable:
// in core::any
pub fn type_name_of_val<T: ?Sized>(_val: &T) -> &'static str
Const stability is not added because this relies on `type_name` which is also
not const. That has a blocking issue.
Fixes #66359