blob: d220174994979085c9955df2342ac49f0bfcddac [file] [log] [blame] [edit]
! UNSUPPORTED: offload-cuda
! Verify that flang can correctly build executables.
! RUN: %flang -L"%libdir" %s -o %t
! RUN: env LD_LIBRARY_PATH="$LD_LIBRARY_PATH:%libdir" %t | FileCheck %s
! CHECK: Hello, World!
program hello
print *, "Hello, World!"
end program