mirror of https://github.com/microsoft/clang.git
Don't give suggest things like function names on the left side of "=".
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191545 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6243f62768
commit
0f90ee0939
|
@ -130,6 +130,8 @@ public:
|
|||
virtual bool ValidateCandidate(const TypoCorrection &candidate) {
|
||||
if (FieldDecl *FD = candidate.getCorrectionDeclAs<FieldDecl>())
|
||||
return isa<ObjCIvarDecl>(FD);
|
||||
if (NextToken.is(tok::equal))
|
||||
return candidate.getCorrectionDeclAs<VarDecl>();
|
||||
return CorrectionCandidateCallback::ValidateCandidate(candidate);
|
||||
}
|
||||
|
||||
|
|
|
@ -123,3 +123,8 @@ void testAccess() {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
long readline(const char *, char *, unsigned long);
|
||||
void assign_to_unknown_var() {
|
||||
deadline_ = 1; // expected-error-re {{use of undeclared identifier 'deadline_'$}}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
|
||||
|
||||
@interface Sprite { // expected-note{{'Sprite' declared here}}
|
||||
@interface Sprite {
|
||||
int sprite, spree;
|
||||
int UseGlobalBar;
|
||||
}
|
||||
|
@ -17,8 +17,7 @@ int UseGlobalBar;
|
|||
+ (void)setFoo:(int)foo {
|
||||
sprite = foo; // expected-error {{instance variable 'sprite' accessed in class method}}
|
||||
spree = foo;
|
||||
Xsprite = foo; // expected-error {{unknown type name 'Xsprite'; did you mean 'Sprite'?}} \
|
||||
// expected-error{{expected identifier or '('}}
|
||||
Xsprite = foo; // expected-error {{use of undeclared identifier 'Xsprite'}}
|
||||
UseGlobalBar = 10;
|
||||
}
|
||||
+ (void)setSprite:(int)sprite {
|
||||
|
|
Loading…
Reference in New Issue