forked from OSchip/llvm-project
parent
22da8ebafc
commit
114e55df5b
|
@ -1532,7 +1532,8 @@ Sema::DeclPtrTy Sema::ActOnMethodDeclaration(
|
|||
Param->setInvalidDecl();
|
||||
}
|
||||
Param->setDeclContext(ObjCMethod);
|
||||
IdResolver.RemoveDecl(Param);
|
||||
if (Param->getDeclName())
|
||||
IdResolver.RemoveDecl(Param);
|
||||
Params.push_back(Param);
|
||||
}
|
||||
|
||||
|
|
|
@ -61,3 +61,7 @@
|
|||
@protocol B < A > // expected-error{{protocol has circular dependency}}
|
||||
@end
|
||||
|
||||
@protocol P
|
||||
- (int)test:(int)param, ..; // expected-warning{{type specifier missing}} \
|
||||
// expected-error{{expected ';' after method prototype}}
|
||||
@end
|
||||
|
|
Loading…
Reference in New Issue