aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc.dg/method-17.m
blob: 2eac939107055c7c2a6363553504495328091d21 (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
/* Test for spurious "may or may not return a value" warnings.  */

/* { dg-do compile } */
/* { dg-options "-Wreturn-type -Wextra" } */

#include "../objc-obj-c++-shared/TestsuiteObject.h"

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

extern int bar;

@implementation Foo
- (id) meth1 {
  if (bar)
    return [TestsuiteObject new];
  return; /* { dg-warning "'return' with no value, in function returning non-void" } */
} 
- (void) meth2 {
  if (!bar)
    return;
  bar = 0;
} /* { dg-bogus "'return' with no value, in function returning non-void" } */
@end