blob: fcea9761ccad2bce77e24941f279e7d5486497f8 [file] [log] [blame] [edit]
!RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic -Werror
!WARNING: Value of local variable 'x' is never used [-Wunused-variable]
real, allocatable:: x(:)
allocate(x(1))
print *, lbound(x)
end