-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from gnikit/gnikit/issue62
Hover on associated blocks does not display types
- Loading branch information
Showing
7 changed files
with
91 additions
and
32 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
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,13 @@ | ||
PROGRAM test_associate_block | ||
IMPLICIT NONE | ||
REAL :: A(5), B(5,5), C, III = 1 | ||
ASSOCIATE (X => A, Y => C) | ||
PRINT*, X, Y, III | ||
END ASSOCIATE | ||
ASSOCIATE (X => 1) | ||
PRINT*, X | ||
END ASSOCIATE | ||
ASSOCIATE (ARRAY => B(:,1)) | ||
ARRAY (3) = ARRAY (1) + ARRAY (2) | ||
END ASSOCIATE | ||
END PROGRAM test_associate_block |
This file was deleted.
Oops, something went wrong.