blob: 4d914f34e9a534ee4464bd482753932f5490b524 [file] [edit]
!RUN: %flang_fc1 -fsyntax-only -pedantic %s 2>&1 | FileCheck %s
!CHECK-NOT: warning: Value of uninitialized local variable 'b' is used but never defined [-Wused-undefined-variable]
real :: a, b
pointer(p,a)
p = loc(b)
a = 2.0
print *, b
end