Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
948e06babdf81033517b54910fedda8079f29ff9
/
.
/
test
/
SemaObjC
/
bad-receiver-1.m
blob: 8376a5ced7acad9e90de5baffa19028536888e8e [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only -verify %s
@interface
I
-
(
id
)
retain
;
@end
void
__raiseExc1
()
{
[
objc_lookUpClass
(
"NSString"
)
retain
];
// expected-error {{ "bad receiver type 'int'" }}
}