[clang] [clang] Implement CWG1878 "`operator auto` template" (PR #78103)

via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 15 02:12:06 PST 2024


================
@@ -11322,9 +11322,22 @@ Decl *Sema::ActOnConversionDeclarator(CXXConversionDecl *Conversion) {
       << ClassType << ConvType;
   }
 
-  if (FunctionTemplateDecl *ConversionTemplate
-                                = Conversion->getDescribedFunctionTemplate())
+  if (FunctionTemplateDecl *ConversionTemplate =
+          Conversion->getDescribedFunctionTemplate()) {
+    if (ConvType->isUndeducedAutoType()) {
+      Diag(Conversion->getTypeSpecStartLoc(), diag::err_auto_not_allowed)
+          << Conversion->getTypeSourceInfo()
+                 ->getTypeLoc()
+                 .getContainedAutoTypeLoc()
----------------
cor3ntin wrote:

Just the  return type.
There is even simpler actually

```cpp
getReturnTypeLoc(Conversion).getSourceRange()
```
 

https://github.com/llvm/llvm-project/pull/78103


More information about the cfe-commits mailing list