aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/pr51264-4.C
blob: 58a1b14c4095c1803082fff5fc293c319ef4910c (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
/* { dg-do compile } */
/* { dg-options "-O0 -Werror -Wreturn-type" } */

/* Test-case from http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25973#c4.  */

struct Block
{
  public:
  Block ();
  ~Block ();
};

bool func (bool bar)
{
  Block block;
  bool foo = false;

  if (!foo || bar)
    do
      {
	return true;
      }
    while (0);
  else
    do
      {
	return false;
      }
    while (0);
}