END TYPE
Purpose
The END TYPE statement indicates the completion of a derived-type definition.
Rules
If type_name is specified, it must match the type_name in the corresponding Derived Type.
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



