We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ddc85f commit 23d0cc7Copy full SHA for 23d0cc7
flang/test/Integration/iso-fortran-binding.cpp
@@ -1,17 +1,9 @@
1
// REQUIRES: clang
2
// UNSUPPORTED: system-windows
3
-// RUN: rm -rf %t && mkdir %t
4
-// RUN: %clangxx %isysroot -I%flang_include %s -o %t/a.out
5
-// RUN: %t/a.out | FileCheck %s
+// RUN: %clang_cc1 -fsyntax-only -I%flang_include %s -x c++
6
7
extern "C" {
8
#include "ISO_Fortran_binding.h"
9
}
10
-#include <iostream>
11
12
-int main() {
13
- std::cout << "PASS\n";
14
- return 0;
15
-}
16
-
17
-// CHECK: PASS
+int main() { return 0; }
0 commit comments