This commit is contained in:
parent
9e39236f3c
commit
4fbc58949b
|
@ -1 +1 @@
|
||||||
Subproject commit e411e3c77e97f7364e974f8fd4ae40ad44ab289e
|
Subproject commit f8e7458d857064ca67ef8b314e20203b90bf75e0
|
|
@ -0,0 +1 @@
|
||||||
|
B.none
|
|
@ -0,0 +1 @@
|
||||||
|
B.one
|
|
@ -0,0 +1 @@
|
||||||
|
A.none
|
|
@ -0,0 +1 @@
|
||||||
|
A.one
|
|
@ -0,0 +1,21 @@
|
||||||
|
/// A
|
||||||
|
enum A
|
||||||
|
{
|
||||||
|
none, /// A.none
|
||||||
|
one, /// A.one
|
||||||
|
}
|
||||||
|
|
||||||
|
/// B
|
||||||
|
enum B
|
||||||
|
{
|
||||||
|
none, /// B.none
|
||||||
|
one, /// B.one
|
||||||
|
}
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
B.none;
|
||||||
|
B.one;
|
||||||
|
A.none;
|
||||||
|
A.one;
|
||||||
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file.d -d -c161 > actual1.txt
|
||||||
|
diff actual1.txt expected1.txt
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file.d -d -c170 > actual2.txt
|
||||||
|
diff actual2.txt expected2.txt
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file.d -d -c178 > actual3.txt
|
||||||
|
diff actual3.txt expected3.txt
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file.d -d -c187 > actual4.txt
|
||||||
|
diff actual4.txt expected4.txt
|
||||||
|
|
Loading…
Reference in New Issue