linux下编程用 编译软件

源代码在线查看: pointer_init_1.f90

软件大小: 49607 K
上传用户: IsABC
关键词: linux 编程 编译 软件
下载地址: 免注册下载 普通下载 VIP

相关代码

				! Check that null initialization of pointer variable works.				! { dg-do run }				program pointer_init_1				  type t				    real x				  end type				  type(t), pointer :: a => NULL()				  real, pointer :: b => NULL()				  character, pointer :: c => NULL()				  integer, pointer, dimension(:) :: d => NULL()				  if (associated(a)) call abort()				  if (associated(b)) call abort()				  if (associated(c)) call abort()				  if (associated(d)) call abort()				end							

相关资源