blob: e2abb1e8a1d57cc03c8d336d1c54fe1ddf8aebd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, October 2010. */
/* { dg-do compile } */
/* { dg-options "-Wall" } */
#include <objc/objc.h>
#include <stdlib.h>
#include "../../objc-obj-c++-shared/objc-test-suite-types.h"
@interface NSArray
{
Class isa;
}
+ (id) arrayWithObject: (id)object __attribute__ ((sentinel)); /* { dg-warning "attribute only applies to variadic functions" } */
+ (id) arrayWithObjects: (id)firstObject, ... __attribute__ ((sentinel));
- (id) initWithObject: (id)object __attribute__ ((sentinel)); /* { dg-warning "attribute only applies to variadic functions" } */
- (id) initWithObjects: (id)firstObject, ... __attribute__ ((sentinel));
@end
void test (id object)
{
NSArray *array;
array = [NSArray arrayWithObject: object];
array = [NSArray arrayWithObjects: object, nil];
array = [NSArray arrayWithObjects: object, object, nil];
array = [NSArray arrayWithObjects: object]; /* { dg-warning "not enough variable arguments" } */
array = [NSArray arrayWithObjects: object, object]; /* { dg-warning "missing sentinel" } */
[array initWithObject: object];
[array initWithObjects: object, nil];
[array initWithObjects: object, object, nil];
[array initWithObjects: object]; /* { dg-warning "not enough variable arguments" } */
[array initWithObjects: object, object]; /* { dg-warning "missing sentinel" } */
}
|