-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There is still work that needs to be done about suggested autocomplete actions within a scope. Right now we provide objects that are both private and public i.e. import does not impact what appears in autocomplete
- Loading branch information
Showing
4 changed files
with
56 additions
and
18 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
module mymod | ||
implicit none | ||
private | ||
public mytype, mytype2 | ||
integer, public :: int1, int2, int3, int4, int5 | ||
type :: mytype | ||
integer :: comp | ||
end type mytype | ||
type :: mytype2 | ||
integer :: comp | ||
end type mytype2 | ||
interface | ||
subroutine sub() | ||
import int1 | ||
import mytype, int2 | ||
type(mytype) :: some | ||
end subroutine sub | ||
end interface | ||
end module mymod |