mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
23 lines
531 B
Rust
23 lines
531 B
Rust
use core::any::TypeId;
|
|
|
|
#[test]
|
|
fn test_typeid_sized_types() {
|
|
struct X;
|
|
struct Y(u32);
|
|
|
|
assert_eq!(TypeId::of::<X>(), TypeId::of::<X>());
|
|
assert_eq!(TypeId::of::<Y>(), TypeId::of::<Y>());
|
|
assert!(TypeId::of::<X>() != TypeId::of::<Y>());
|
|
}
|
|
|
|
#[test]
|
|
fn test_typeid_unsized_types() {
|
|
trait Z {}
|
|
struct X(str);
|
|
struct Y(dyn Z + 'static);
|
|
|
|
assert_eq!(TypeId::of::<X>(), TypeId::of::<X>());
|
|
assert_eq!(TypeId::of::<Y>(), TypeId::of::<Y>());
|
|
assert!(TypeId::of::<X>() != TypeId::of::<Y>());
|
|
}
|