This commit is contained in:
Hackerpilot 2015-08-19 01:16:32 -07:00
parent db01abf91c
commit 2e66706b71
5 changed files with 46 additions and 1 deletions

@ -1 +1 @@
Subproject commit 17c2e0d57cf5dbf7e83dbb0f1d215dc7c1181a75 Subproject commit 6aca66ef031cca3687df8f022e8c04a33fa7c263

12
tests/tc016/expected1.txt Normal file
View File

@ -0,0 +1,12 @@
identifiers
alignof k
dup k
idup k
init k
length k
mangleof k
ptr k
reverse k
sizeof k
sort k
stringof k

14
tests/tc016/expected2.txt Normal file
View File

@ -0,0 +1,14 @@
identifiers
alignof k
byKey k
byValue k
dup k
get k
init k
keys k
length k
mangleof k
rehash k
sizeof k
stringof k
values k

11
tests/tc016/file.d Normal file
View File

@ -0,0 +1,11 @@
unittest
{
int[] a;
a.
}
unittest
{
int[int] aa;
aa.
}

8
tests/tc016/run.sh Executable file
View File

@ -0,0 +1,8 @@
set -e
set -u
../../bin/dcd-client file.d -c24 > actual1.txt
diff actual1.txt expected1.txt
../../bin/dcd-client file.d -c57 > actual2.txt
diff actual2.txt expected2.txt