repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
[InstCombine] Preserve NSW flags for `lshr (mul nuw X, C1), C2 -> mul nuw nsw X,...
[llvm-project.git]
/
clang
/
test
/
SemaObjC
/
pedantic-dynamic-test.m
blob
34cbb7241dcc4c16a569f2d59abb29e61e006099
1
// RUN: %clang_cc1 -fsyntax-only -verify -pedantic -Wno-objc-root-class %s
2
// expected-no-diagnostics
3
4
@interface I
5
{
6
int window;
7
}
8
@property int window, noWarningNeeded;
9
@end
10
11
@implementation I
12
13
@synthesize window;
14
15
@dynamic noWarningNeeded;
16
@end