Test case for #251
This commit is contained in:
parent
a3f24bfa73
commit
9bdce655db
|
@ -0,0 +1,2 @@
|
|||
calltips
|
||||
this(int[] array, int*[] arrayOfPointers, int* pointer, int plain)
|
|
@ -0,0 +1,12 @@
|
|||
struct TestStruct
|
||||
{
|
||||
int[] array;
|
||||
int*[] arrayOfPointers;
|
||||
int* pointer;
|
||||
int plain;
|
||||
}
|
||||
|
||||
unittest
|
||||
{
|
||||
auto ts = TestStruct(
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
set -e
|
||||
set -u
|
||||
|
||||
../../bin/dcd-client file.d -c122 > actual1.txt
|
||||
diff actual1.txt expected1.txt
|
Loading…
Reference in New Issue