blob: 5a73ba419c0a3b0111883386372f3cd4a45b2398 [file] [log] [blame] [edit]
! RUN: %python %S/test_errors.py %s %flang_fc1
subroutine bad(a)
real :: a(..)
!ERROR: Selector must not be assumed-rank
associate(x => a)
end associate
end subroutine