mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
12 lines
133 B
D
12 lines
133 B
D
module tangotests.debug4;
|
|
|
|
void main()
|
|
{
|
|
char c = 'c';
|
|
wchar wc = 'w';
|
|
dchar dc = 'd';
|
|
|
|
int* fail;
|
|
*fail = 32;
|
|
}
|