blob: 23fc675a4e9297a846c4cdb4be0209e2a89fdd8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 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
|