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
to reproduce:
mkdir temp && cd temp $ldc2 -cpp-verbosediags -cpp-args -std=c++11 -run $git_clone_D/D/Calypso/tests/calypso/basics.d # ok cp $git_clone_D/D/Calypso/tests/calypso/basics.d . ldc2 -cpp-verbosediags -cpp-args -std=c++11 -cpp-args -I$git_clone_D/D/Calypso/tests/calypso -run basics.d Calypso/tests/calypso/basics.cpp:6:8: error: redefinition of 'testDoubleVar' double testDoubleVar = 99.99; ^ Calypso/tests/calypso/basics.cpp:6:8: note: previous definition is here double testDoubleVar = 99.99;
also, error message is non-sensical since previous definition location==redefinition location
WORKAROUND: rm -rf .calypso_cache but would be nice to either have better diagnostic error messages or fix this altogether or tell user to clear cache
rm -rf .calypso_cache
The text was updated successfully, but these errors were encountered:
No branches or pull requests
to reproduce:
also, error message is non-sensical since previous definition location==redefinition location
WORKAROUND:
rm -rf .calypso_cache
but would be nice to either have better diagnostic error messages or fix this altogether or tell user to clear cache
The text was updated successfully, but these errors were encountered: