Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
7b07d4ae5ad66bba497d072e7e95f65aea63c187
/
.
/
test
/
SemaObjC
/
pedantic-dynamic-test.m
blob: 9b14c1d75f39b86dc73f78083f68fa8b607a9102 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
// rdar: // 7860960
@interface
I
{
int
window
;
}
@property
int
window
,
noWarningNeeded
;
@end
@implementation
I
@synthesize
window
;
@dynamic
noWarningNeeded
;
@end