test_fail_unknown_read.f90 Source File


This file depends on

sourcefile~~test_fail_unknown_read.f90~~EfferentGraph sourcefile~test_fail_unknown_read.f90 test_fail_unknown_read.f90 sourcefile~interface.f90 interface.f90 sourcefile~test_fail_unknown_read.f90->sourcefile~interface.f90

Contents


Source Code

program fail_unknown_read

use h5fortran, only : hdf5_file
implicit none (type, external)

type(hdf5_file) :: h
complex :: x

call h%open('bad.h5', status='scratch', verbose=.false.)
call h%read('/complex', x)
call h%close()

end program