We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8e5e2f commit 3479342Copy full SHA for 3479342
flang/test/Semantics/named-construct-declaration-conflict.f90
@@ -1,10 +1,10 @@
1
!RUN: %python %S/test_errors.py %s %flang_fc1
2
3
subroutine foo()
4
- integer :: nxloop
5
-!ERROR: 'nxloop' is already declared in this scoping unit
6
- nxloop: do i = 1, 100
7
- enddo nxloop
+ integer :: xyz
+!ERROR: 'xyz' is already declared in this scoping unit
+ xyz: do i = 1, 100
+ enddo xyz
8
end subroutine
9
10
0 commit comments