(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
team_form_1.f90
! { dg-do run }
! { dg-options "-fcoarray=single" }
!
! Tests if form team works
!
  use iso_fortran_env, only : team_type
  implicit none
  type(team_type) :: team

  form team (mod(this_image(),2)+1,team)

end