Fix #251
This commit is contained in:
parent
e6f3160d90
commit
954989bf63
2
dsymbol
2
dsymbol
|
@ -1 +1 @@
|
|||
Subproject commit e0d4828006b258c1d25a421677fc8527bd766a05
|
||||
Subproject commit c9ac0cbf1a4496c2c015829bf08fd96c08c53ff7
|
|
@ -6,7 +6,18 @@ struct TestStruct
|
|||
int plain;
|
||||
}
|
||||
|
||||
class TestClass
|
||||
{
|
||||
int a;
|
||||
int b;
|
||||
}
|
||||
|
||||
unittest
|
||||
{
|
||||
auto ts = TestStruct(
|
||||
}
|
||||
|
||||
unittest
|
||||
{
|
||||
auto tc = new TestClass(
|
||||
}
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
set -e
|
||||
set -u
|
||||
|
||||
../../bin/dcd-client file.d -c122 > actual1.txt
|
||||
../../bin/dcd-client file.d -c159 > actual1.txt
|
||||
diff actual1.txt expected1.txt
|
||||
|
||||
../../bin/dcd-client file.d -c199 > actual2.txt
|
||||
diff actual2.txt expected2.txt
|
||||
|
|
Loading…
Reference in New Issue