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
Consider two files:
a.d:
module a; import std.datetime; class A { public void f() { synchronized (this) { } } }
b.d:
module b; class B { public void g() { synchronized (this) { } } }
Calling
./dlp infer-attributes a.d b.d
causes
Assertion failure
with dmd 2.094.1.
The text was updated successfully, but these errors were encountered:
Are you using a pre-compiled release or have you compiled DLP from source? It seems to work for me when I compile DLP from master.
Sorry, something went wrong.
This commit 2d788b5 might have fixed the problem.
No branches or pull requests
Consider two files:
a.d:
b.d:
Calling
causes
with dmd 2.094.1.
The text was updated successfully, but these errors were encountered: