URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [data_initialized.f90] - Rev 841
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do compile }
! { dg-options "-std=f95" }
! Tests fix for PR17737 - already initialized variable cannot appear
! in data statement
integer :: i, j = 1
data i/0/
data i/0/ ! { dg-error "Extension: re-initialization" }
data j/2/ ! { dg-error "Extension: re-initialization" }
end
Go to most recent revision | Compare with Previous | Blame | View Log