We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
alias T(alias X) = X; int foo; alias baz = T!(foo); // works alias bar = T!foo; // doesn't work
For T!foo, DCD provides the location of T, not foo:
T!foo
T
foo
$ dcd-client test.d -c 47 --symbolLocation stdin 26 $ dcd-client test.d -c 76 --symbolLocation stdin 6
The text was updated successfully, but these errors were encountered:
There's code that is designed specifically to allow this to work. I need to dig through the issue list and git history to figure out why it's there.
Sorry, something went wrong.
I traced it back to a fix for #182, but deleting that code doesn't cause the issue to re-appear or break any of the regression tests.
#353 WIP
23fecda
closed by #366
Hackerpilot
No branches or pull requests
For
T!foo
, DCD provides the location ofT
, notfoo
:The text was updated successfully, but these errors were encountered: