mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 11:23:14 +01:00
9 lines
140 B
D
9 lines
140 B
D
module typeinfo6;
|
|
|
|
void main()
|
|
{
|
|
auto ti = typeid(int[]);
|
|
assert(ti.toString() == "int[]");
|
|
assert(ti.next() is typeid(int));
|
|
}
|