aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Parser/cxx-using-declaration.cpp
AgeCommit message (Collapse)AuthorFilesLines
2014-03-07Replace "can not" with "cannot" in diagnostics messages.Ismail Pazarbasi1-1/+1
llvm-svn: 203302
2012-04-27Imrpove the note text for when a non-type decl hides a tag typeKaelyn Uhrain1-1/+1
llvm-svn: 155723
2012-04-26Add note to help explain why a tag such as 'struct' is needed to referKaelyn Uhrain1-0/+16
to a given type, when the reason is that there is a non-type decl with the same name. llvm-svn: 155677
2009-12-15Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar1-1/+1
- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
2009-12-03Honor using declarations in overload resolution. Most of the code forJohn McCall1-1/+0
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. llvm-svn: 90410
2009-11-25Tweak expected error to match what should happen, once using declarations workDouglas Gregor1-3/+2
llvm-svn: 89876
2009-11-08Remove RUN: true lines.Daniel Dunbar1-2/+2
llvm-svn: 86432
2009-10-13test commitJohn Thompson1-48/+47
llvm-svn: 83945
2009-07-25Disable this test: cxx-using-declaration.cppDaniel Dunbar1-1/+4
Something strange is going on here; this test randomly started failing after unrelated changes to TestRunner.py (even though it runs the same script). Argiris or Doug, can one of you investigate? llvm-svn: 77063
2009-06-20Parsing and AST support for using declarations, from John Thompson!Douglas Gregor1-0/+45
llvm-svn: 73812