aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaObjC/method-param-named-id.m
blob: 8269c31116c32d87bb979d21b69e77d194c78d99 (plain)
1
2
3
4
5
6
7
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s


@interface Foo
-(void)paramNamedID:(int)id usesIDType:(id)notShadowed;
-(void)paramNamedID:(int)id, id notShadowed; // expected-warning{{use of C-style parameters in Objective-C method declarations is deprecated}}
@end