Last active
December 29, 2015 10:09
-
-
Save gmarkall/7655095 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module IBZ | |
implicit none | |
type Plane | |
integer :: M(1,1) | |
end type Plane | |
contains | |
integer function t() | |
type(Plane), parameter :: planes(1) = [ Plane( reshape([1],[1,1]) ) ] | |
integer :: thing(1) | |
t = (planes(1)%M) | |
end function t | |
end module IBZ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment