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