aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/attributes/method-sentinel-1.mm
blob: 2b8e6fd259def46f2a0a22b83533cadb9d232b4e (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
36
/* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, October 2010.  */
/* { dg-do compile } */
/* { dg-options "-Wall" } */

#include <objc/objc.h>
#include <stdlib.h>
/* Ensure a compatible definition of nil.  */
#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" } */
}