We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc13053 commit 33fd0dbCopy full SHA for 33fd0db
tests/tc717/expected.txt
@@ -0,0 +1,8 @@
1
+identifiers
2
+alignof k
3
+init k
4
+mangleof k
5
+max k
6
+min k
7
+sizeof k
8
+stringof k
tests/tc717/file.d
@@ -0,0 +1,15 @@
+struct A
+{
+ B b;
+
+ void test()
+ {
+ auto here = b.inside_b;
+ here.
9
+ }
10
+}
11
12
+struct B
13
14
+ int inside_b;
15
tests/tc717/run.sh
@@ -0,0 +1,5 @@
+set -e
+set -u
+../../bin/dcd-client $1 file.d --extended -c88 > actual.txt
+diff actual.txt expected.txt --strip-trailing-cr
0 commit comments