Skip to content

Instantly share code, notes, and snippets.

@masatake
Created June 7, 2015 22:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save masatake/6af481ba4f9f678f2c9b to your computer and use it in GitHub Desktop.
Save masatake/6af481ba4f9f678f2c9b to your computer and use it in GitHub Desktop.
valgrind --leak-check=full -v ./ctags -o - --language-force=Fortran
module test_extends
type shape
integer :: color
logical :: filled
integer :: x
integer :: y
end type shape
type, extends(shape :: rectangle
integer :: length
integer :: width
end type rectangle
end module test_extends
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment