Test cases for #244
This commit is contained in:
parent
2e66706b71
commit
989501bec5
|
@ -0,0 +1,3 @@
|
||||||
|
module a;
|
||||||
|
public import b;
|
||||||
|
string FOO;
|
|
@ -0,0 +1,6 @@
|
||||||
|
module b;
|
||||||
|
string BAR;
|
||||||
|
|
||||||
|
struct S {
|
||||||
|
int x;
|
||||||
|
}
|
|
@ -0,0 +1,4 @@
|
||||||
|
identifiers
|
||||||
|
BAR v
|
||||||
|
FOO v
|
||||||
|
S s
|
|
@ -0,0 +1,3 @@
|
||||||
|
module main;
|
||||||
|
import mod = a;
|
||||||
|
mod.
|
|
@ -0,0 +1,5 @@
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
../../bin/dcd-client file.d -c33 > actual.txt
|
||||||
|
diff actual.txt expected.txt
|
Loading…
Reference in New Issue