blob: 23fc675a4e9297a846c4cdb4be0209e2a89fdd8e [file] [log] [blame]
// RUN: clang-cc -fsyntax-only -verify %s
@interface foo
@end
@implementation foo
@end
@interface bar
-(void) my_method:(foo) my_param; // expected-error {{Objective-C type cannot be passed by value}}
- (foo)cccccc:(long)ddddd; // expected-error {{Objective-C type cannot be returned by value}}
@end
@implementation bar
-(void) my_method:(foo) my_param // expected-error {{Objective-C type cannot be passed by value}}
{
}
- (foo)cccccc:(long)ddddd // expected-error {{Objective-C type cannot be returned by value}}
{
}
@end