view gcc/testsuite/g++.old-deja/g++.jason/cond.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
line wrap: on
line source

// { dg-do assemble  }
// GROUPS passed rtti
// Negative testcase for decls in conditions.

int main()
{
  float i;
  
  if (int i = 1)		// { dg-message "previously" }
    {
      char i;			// { dg-error "redeclaration" } 
      char j;
    }
  else
    {
      short i;			// { dg-error "redeclaration" }
      char j;
    }

  while (int i = 0)		// { dg-message "previously" }
    {
      int i;			// { dg-error "redeclaration" }
    }

  for (; int i = 0; )		// { dg-message "previously" }
    {
      int i;			// { dg-error "redeclaration" }
    }

  switch (int i = 0)		// { dg-message "previously" }
    {
    default:
      int i;			// { dg-error "redeclaration" } 
    }

  if (struct A { operator int () { return 1; } } *foo = new A) // { dg-error "defined" } 
    ;

  A bar;			// { dg-error "not declared" "decl" } 
  
  if (enum A { one, two, three } foo = one) // { dg-error "defined" "def" } 
  // { dg-error "not declared" "expected" { target *-*-* } .-1 }
    ;

  struct B { operator int () { return 2; } };

  if (struct B * foo = new B)
    ;

  if (int f () = 1)		// { dg-error "declares a function" } 
    ;
  
  if (int a[2] = {1, 2})	// { dg-error "declares an array" }
    ;

}