mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 19:27:30 +03:00
9 lines
274 B
Rust
9 lines
274 B
Rust
use std::mem::type_info::Type;
|
|
//~^ ERROR: use of unstable library feature `type_info`
|
|
|
|
fn main() {
|
|
let ty = std::mem::type_info::Type::of::<()>();
|
|
//~^ ERROR: use of unstable library feature `type_info`
|
|
//~| ERROR: use of unstable library feature `type_info`
|
|
}
|