mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-15 20:33:14 +01:00
10 lines
79 B
D
10 lines
79 B
D
module typeinfo;
|
|
|
|
typedef int int_t;
|
|
|
|
void main()
|
|
{
|
|
int_t i;
|
|
i += 3;
|
|
}
|