test_record Derived Type

type, public :: test_record


Components

Type Visibility Attributes Name Initial
integer, public, pointer :: test_status(:,:)
type(character_array), public, pointer :: test_string(:,:)

Source Code

  type test_record   
     integer, pointer :: test_status(:,:)  ! status of test
     type(character_array), pointer :: test_string(:,:)
  end type test_record