diff options
author | John McCall <rjmccall@apple.com> | 2009-12-03 04:06:58 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-12-03 04:06:58 +0000 |
commit | 701c89e02cde6e0fb9673cbe7c97eadc74b50358 (patch) | |
tree | dc0e4e30cebf6b4274abead5ae74575616c4cedf /test/Parser/cxx-using-declaration.cpp | |
parent | 919d5e51fd0a1b6e52028c8aa42edf44ee036954 (diff) |
Honor using declarations in overload resolution. Most of the code for
overloaded-operator resolution is wildly untested, but the parallel code for
methods seems to satisfy some trivial tests.
Also change some overload-resolution APIs to take a type instead of an expression,
which lets us avoid creating a spurious CXXThisExpr when resolving implicit
member accesses.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90410 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Parser/cxx-using-declaration.cpp')
-rw-r--r-- | test/Parser/cxx-using-declaration.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/Parser/cxx-using-declaration.cpp b/test/Parser/cxx-using-declaration.cpp index 461b9e597d..20c9fb391a 100644 --- a/test/Parser/cxx-using-declaration.cpp +++ b/test/Parser/cxx-using-declaration.cpp @@ -1,5 +1,4 @@ // RUN: clang-cc -fsyntax-only -verify %s -// XFAIL: * namespace A { int VA; |