Issue |
153480
|
Summary |
[flang] Missing diagnostic on DECIMAL= appear with FORM='UNFORMATTED'
|
Labels |
flang:frontend
|
Assignees |
|
Reporter |
DanielCChen
|
Consider the following code:
```
integer :: ios
open(1, form='unformatted', decimal='comma', iostat=ios)
! test 9: decimal= specifier is not allowed in unformatted i/o
if( ios == 0 ) then
ERROR STOP 1
endif
end
```
The `decimal=` specifier can only appear on formatted I/O.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs