mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
11 lines
169 B
D
11 lines
169 B
D
module typeinfo9;
|
|
|
|
typedef int int_t = 42;
|
|
|
|
void main()
|
|
{
|
|
auto i = typeid(int_t).init;
|
|
assert(i.length == int_t.sizeof);
|
|
assert(*cast(int_t*)i.ptr == 42);
|
|
}
|