aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc.dg/method-17.m
blob: a4e68539063f1ec0a5719638825b003efce68dc6 (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
/* APPLE LOCAL file Objective-C */
/* Test for spurious "may or may not return a value" warnings.  */
/* { dg-do compile } */
/* { dg-options "-Wextra" } */

#include <objc/Object.h>

@interface Foo: Object
- (id) meth1;
- (void) meth2;
@end

extern int bar;

@implementation Foo
- (id) meth1 {
  if (bar)
    return [Object new];
  return;
} /* { dg-warning "this function may return with or without a value" } */
- (void) meth2 {
  if (!bar)
    return;
  bar = 0;
} /* { dg-bogus "this function may return with or without a value" } */
@end