diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-10-20 03:06:34 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-10-20 03:06:34 +0000 |
commit | d507d77432b7c9340f4f0c760f76c1ebaaef37aa (patch) | |
tree | 2e722689af39cead24e66b1fa135fc4ba29a93ef /clang/test/FixIt/typo.cpp | |
parent | 274a70ed7f4315c83273173fce4c3b0e097958d6 (diff) | |
download | bcm5719-llvm-d507d77432b7c9340f4f0c760f76c1ebaaef37aa.tar.gz bcm5719-llvm-d507d77432b7c9340f4f0c760f76c1ebaaef37aa.zip |
Fix handling of property and ivar lookup in typo correction; the two
kinds of lookup into Objective-C classes were tangled together, a
situation that was compounded by automatically synthesized ivars.
llvm-svn: 116907
Diffstat (limited to 'clang/test/FixIt/typo.cpp')
-rw-r--r-- | clang/test/FixIt/typo.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/test/FixIt/typo.cpp b/clang/test/FixIt/typo.cpp index 35666efe475..d1e732fd1db 100644 --- a/clang/test/FixIt/typo.cpp +++ b/clang/test/FixIt/typo.cpp @@ -2,9 +2,7 @@ // RUN: cp %s %t // RUN: %clang_cc1 -fsyntax-only -fixit -x c++ %t || true // RUN: %clang_cc1 -fsyntax-only -pedantic -Werror -x c++ %t -// -// FIXME: Disabled while we investigate failure. -// REQUIRES: disabled + namespace std { template<typename T> class basic_string { // expected-note 2{{'basic_string' declared here}} public: |