blob: 4a2e66bd2aac471af8900e1ca7886c024928c99b [file] [log] [blame]
! UNSUPPORTED: system-windows
! Verify that flang can correctly build executables.
! RUN: %flang %s -o %t
! RUN: LD_LIBRARY_PATH="$LD_LIBRARY_PATH:%llvmshlibdir" %t | FileCheck %s
! RUN: rm -f %t
! CHECK: Hello, World!
program hello
print *, "Hello, World!"
end program