flang icon indicating copy to clipboard operation
flang copied to clipboard

An allocatable variable should not be permitted in a specification expression

Open CarolineConcatto opened this issue 4 years ago • 0 comments

This tests compiles fine with Flang:

Program test
  Implicit None
    Integer,Allocatable :: fail(:)
    Integer y(Size(fail))
End Program

But fail is not permitted in a specification expression.

CarolineConcatto avatar Mar 26 '20 17:03 CarolineConcatto