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