fix #400 - handle completion for auto bools

This commit is contained in:
Basile Burg 2017-07-20 08:20:38 +02:00 committed by Petar Kirov
parent 91d3085094
commit cbcc6faac3
5 changed files with 17 additions and 3 deletions

@ -1 +1 @@
Subproject commit e9aae0594739d002009cd34dd3edeb38f1f0893b Subproject commit b560c88da71c8a4b1389fc6a0a2e7c60de3f5274

View File

@ -7,8 +7,8 @@
], ],
"license": "GPL-3.0", "license": "GPL-3.0",
"dependencies": { "dependencies": {
"dsymbol": "~>0.2.4", "dsymbol": "~>0.2.5",
"libdparse": "~>0.7.1-beta.4", "libdparse": "~>0.7.1-beta.6",
"msgpack-d": "~>1.0.0-beta.3" "msgpack-d": "~>1.0.0-beta.3"
}, },
"versions": ["built_with_dub"], "versions": ["built_with_dub"],

8
tests/tc056/expected.txt Normal file
View File

@ -0,0 +1,8 @@
identifiers
alignof k
init k
mangleof k
max k
min k
sizeof k
stringof k

1
tests/tc056/file.d Normal file
View File

@ -0,0 +1 @@
auto b = true; b.

5
tests/tc056/run.sh Executable file
View File

@ -0,0 +1,5 @@
set -e
set -u
../../bin/dcd-client $1 file.d -c18 > actual.txt
diff actual.txt expected.txt