Commit 4563cfec by Tobias Burnus Committed by Tobias Burnus

re PR fortran/57762 (Memory leak in gfortran.dg/class_array_7.f03 after revision 200084)

2013-07-22  Tobias Burnus  <burnus@net-b.de>

        PR fortran/57762
        * gfortran.dg/class_array_7.f03: Fix memory leak.

From-SVN: r201137
parent ae4d1777
2013-07-22 Tobias Burnus <burnus@net-b.de>
PR fortran/57762
* gfortran.dg/class_array_7.f03: Fix memory leak.
2013-07-22 Paolo Carlini <paolo.carlini@oracle.com> 2013-07-22 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/52816 PR c++/52816
......
...@@ -54,4 +54,5 @@ program main ...@@ -54,4 +54,5 @@ program main
if (trim (print_type ("a", a)) .ne. "a is extended_type") call abort if (trim (print_type ("a", a)) .ne. "a is extended_type") call abort
call reallocate (a) call reallocate (a)
if (trim (print_type ("a", a)) .ne. "a is base_type") call abort if (trim (print_type ("a", a)) .ne. "a is base_type") call abort
deallocate (a)
end program main end program main
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment