XL Fortran for AIX 8.1

Language Reference

END TYPE

Purpose

The END TYPE statement indicates the completion of a derived-type definition.

Format



>>-END TYPE--+-----------+-------------------------------------><
             '-type_name-'
 
 

Rules

If type_name is specified, it must match the type_name in the corresponding Derived Type statement.

If a label is specified on the END TYPE statement, the label belongs to the scoping unit of the derived-type definition.

Examples

TYPE A
  INTEGER :: B
  REAL :: C
END TYPE A

Related Information


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]