-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
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
[clang] Availability attribute only triggers on the second use of a variable #61815
Comments
@llvm/issue-subscribers-clang-frontend |
It looks like the first time through parsing I don't see any obvious place to fix this in the parsing but I am not super familiar with this part but I was able to modify if (auto *FTD = dyn_cast<FunctionTemplateDecl>(this))
return FTD->getTemplatedDecl()->getAvailability(Message, EnclosingVersion,
RealizedPlatform);
else if (auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(this))
return CTSD->getSpecializedTemplate()->getTemplatedDecl()->getAvailability(Message, EnclosingVersion,
RealizedPlatform); I don't know if this is the right way or if this indicates a parsing design issue that was worked around before and I am just adding another work-around. @AaronBallman wdyt? |
CC @zygoloid who may also know the answer to this as well |
The problem here is that this diagnostic is produced before we require
... should presumably warn, but doesn't instantiate the class template definition. Most attributes are only instantiated with the class template definition, rather than being instantiated with the declaration. There's a flag on the attribute definition in |
Yup, that does it, adding |
Whoops, looks like we got the naming wrong there -- that came in through https://reviews.llvm.org/D31245 |
…lable attribute There may be cases in which we want to diagnose a type as unavailable but it may not be complete at the time. Setting MeaningfulToClassTemplateDefinition fixes this issue. This fixes: llvm#61815 Differential Revision: https://reviews.llvm.org/D147495
This fails with:
In reality, it should have failed on the first usage of
polymorphic_allocator<void>
, which is when declaringa
.Also on Godbolt: https://godbolt.org/z/aEsfjcdT1
The text was updated successfully, but these errors were encountered: