]> granicus.if.org Git - clang/commitdiff
<rdar://problem/13605348> Don't consider invalid user-defined literal operators durin...
authorDouglas Gregor <dgregor@apple.com>
Wed, 10 Apr 2013 05:18:00 +0000 (05:18 +0000)
committerDouglas Gregor <dgregor@apple.com>
Wed, 10 Apr 2013 05:18:00 +0000 (05:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179150 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaLookup.cpp
test/CXX/over/over.oper/over.literal/p2.cpp

index b631d8b930a703f000b55f3d502dd97da75251b4..eab2d81f39647831688950f605857610d7a92128 100644 (file)
@@ -2582,6 +2582,12 @@ Sema::LookupLiteralOperator(Scope *S, LookupResult &R,
     bool IsRaw = false;
     bool IsExactMatch = false;
 
+    // If the declaration we found is invalid, skip it.
+    if (D->isInvalidDecl()) {
+      F.erase();
+      continue;
+    }
+
     if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
       if (FD->getNumParams() == 1 &&
           FD->getParamDecl(0)->getType()->getAs<PointerType>())
index c012104314b26d59736c9027bda5f218cd4f3797..00466fb311d55704aa4c4c85d5e52dc73abd8de6 100644 (file)
@@ -33,3 +33,12 @@ template<char...> void operator "" _h() {}
 template<> void operator "" _h<'a', 'b', 'c'>() {}
 
 template void operator "" _h<'a', 'b', 'c', 'd'>();
+
+namespace rdar13605348 {
+
+class C {
+  double operator"" _x(long double value) { return double(value); } // expected-error{{literal operator 'operator "" _x' must be in a namespace or global scope}}
+  double value() { return 3.2_x; } // expected-error{{no matching literal operator for call to}}
+};
+
+}