Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
CodeGenObjC
/
property-getter-dot-syntax.m
blob: c1cc5e994774f7e18c0321185ea85b157287fd71 [
file
] [
log
] [
blame
]
// RUN: clang-cc --emit-llvm -o %t %s
@protocol
NSObject
-
(
void
*)
description
;
@end
int
main
()
{
id
<
NSObject
>
eggs
;
void
*
eggsText
=
eggs
.
description
;
}