BUG: Errors CV1255 and EE0037 Watching Assumed Size ArraysLast reviewed: July 14, 1995Article ID: Q106726 |
The information in this article applies to:
SYMPTOMSAssumed size arrays do not display in a Watch or Locals window; instead, one of the following errors is displayed:
CV1255 Message: no data members -or- EE0037 Error: Array subscript out of bounds STATUSMicrosoft has confirmed this to be a problem in FORTRAN PowerStation versions 1.0 and 1.0a. This is not a problem in FORTRAN PowerStation 32.
MORE INFORMATIONTo demonstrate the problem:
Sample Code
real*4 x(10)
x = 3.14
call sub (x)
end
subroutine sub (a)
real*4 a(*)
a(1) = 1.2
print*, a(1)
end
|
Additional reference words: 1.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |