Sign in
llvm
/
llvm-project
/
clang
/
05dda9e3a2d8773e00b8c8be668ef8919bd3ea04
/
.
/
test
/
CodeGen
/
avr
/
objc-method.m
blob: aeafb8e63466ea6cbe276630931426b206117119 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -triple avr -emit-llvm -fobjc-runtime=macosx %s -o /dev/null
__attribute__
((
objc_root_class
))
@interface
Foo
-
(
id
)
foo
;
-
(
id
)
bar
;
@end
@implementation
Foo
-
(
id
)
foo
{
return
self
;
}
-
(
id
)
bar
{
return
[
self foo
];
}
@end