mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-04-20 02:39:02 +02:00
[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
This commit is contained in:
23
tests/mini/a.d
Normal file
23
tests/mini/a.d
Normal file
@@ -0,0 +1,23 @@
|
||||
module a;
|
||||
|
||||
extern(C) int printf(char*, ...);
|
||||
|
||||
int i = 42;
|
||||
|
||||
void main()
|
||||
{
|
||||
int j;
|
||||
j = i;
|
||||
int* p;
|
||||
p = &j;
|
||||
int k = *p;
|
||||
assert(k == 42);
|
||||
|
||||
byte b = -1;
|
||||
int i = b;
|
||||
assert(i == -1);
|
||||
|
||||
int* p2 = p;
|
||||
|
||||
printf("Done\n");
|
||||
}
|
||||
Reference in New Issue
Block a user