blob: 2e36a15264b7691567253e497ff19062ac49ef15 [file] [log] [blame]
// RUN: clang -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