[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Driver / exec.f90
blobfd174005ddf62ac13bcaced04389c5d50b6108da
1 ! UNSUPPORTED: system-windows
2 ! Verify that flang can correctly build executables.
4 ! RUN: %flang %s -o %t
5 ! RUN: env LD_LIBRARY_PATH="$LD_LIBRARY_PATH:%llvmshlibdir" %t | FileCheck %s
6 ! RUN: rm -f %t
8 ! CHECK: Hello, World!
9 program hello
10 print *, "Hello, World!"
11 end program