Sign in
fuchsia
/
third_party
/
llvm-project
/
refs/heads/upstream/users/joker-eph-python-bindings-maintainers
/
.
/
clang
/
test
/
CodeGenObjCXX
/
implementation-in-extern-c.mm
blob: dd633d14fade19a82a162deba0b61e133af63580 [
file
] [
log
] [
blame
] [
edit
]
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
extern
"C"
{
@interface
RetainBucket
+
(
id
)
sharedRetainBucket
;
@end
@implementation
RetainBucket
+
(
id
)
sharedRetainBucket
{
static
id sharedBucket
=
(
id
)
0
;
return
sharedBucket
;
}
@end
}