mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
10 lines
162 B
D
10 lines
162 B
D
module typeinfo;
|
|
|
|
void main()
|
|
{
|
|
auto ti = typeid(int);
|
|
char[] str = ti.toString();
|
|
printf("%.*s\n", str.length, str.ptr);
|
|
assert(str == "int");
|
|
}
|