! Copyright (c) 2010, NVIDIA CORPORATION.  All rights reserved.
!
! Licensed under the Apache License, Version 2.0 (the "License");
! you may not use this file except in compliance with the License.
! You may obtain a copy of the License at
!
!     http://www.apache.org/licenses/LICENSE-2.0
!
! Unless required by applicable law or agreed to in writing, software
! distributed under the License is distributed on an "AS IS" BASIS,
! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
! See the License for the specific language governing permissions and
! limitations under the License.
!       


module my_container

type container
  integer i
  real r
  contains
	procedure :: init => init_container
 	procedure :: xi => extract_i
	procedure :: xr => extract_r
	!generic :: extract => xi, xr
  end type container
contains
  subroutine extract_i(this, ii)
  class(container) :: this
  integer ii
  ii = this%i
  end subroutine

  subroutine extract_r(this, rr)
  class(container) :: this
  real rr
  rr = this%r
  end subroutine

  subroutine init_container(this, ic, ir)
  class(container) :: this
  integer :: ic
  real :: ir
  this%i = ic
  this%r = ir
  end subroutine
  

end module my_container 

program prg
USE CHECK_MOD
use my_container
type(container) :: t
integer ei
real er
logical rslt(2)
logical expect(2)

rslt = .false.
expect = .true.


call t%init(23,4.5)


call extract_r(t, er)

call t%xr(er)
call t%xi(ei)

rslt(1) = er .eq. 4.5
rslt(2) = ei .eq. 23

call check(rslt,expect,2)

end 


