mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
15 lines
225 B
Rust
15 lines
225 B
Rust
//@ run-pass
|
|
|
|
#![allow(dead_code)]
|
|
|
|
use std::any::type_name;
|
|
|
|
struct Foo<T> {
|
|
x: T
|
|
}
|
|
|
|
pub fn main() {
|
|
assert_eq!(type_name::<isize>(), "isize");
|
|
assert_eq!(type_name::<Foo<usize>>(), "tydesc_name::Foo<usize>");
|
|
}
|