mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
11 lines
163 B
D
11 lines
163 B
D
module typeinfo11;
|
|
|
|
void main()
|
|
{
|
|
int[4] a;
|
|
TypeInfo ti;
|
|
ti = typeid(typeof(a));
|
|
assert(ti.next() is typeid(int));
|
|
assert(ti.tsize() == 16);
|
|
}
|