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 291f7cc commit f495716Copy full SHA for f495716
test/lex/backslash.f90
@@ -8,6 +8,12 @@
8
! RUN: %flang -c -fno-backslash %s
9
! RUN: not %flang -c -Mnobackslash %s 2>&1 | FileCheck %s
10
! RUN: not %flang -c -fbackslash %s 2>&1 | FileCheck %s
11
+! RUN: %flang -c -Mnobackslash -Mbackslash %s
12
+! RUN: %flang -c -fbackslash -fno-backslash %s
13
+! RUN: not %flang -c -Mbackslash -Mnobackslash %s 2>&1 | FileCheck %s
14
+! RUN: not %flang -c -fno-backslash -fbackslash %s 2>&1 | FileCheck %s
15
+! RUN: not %flang -c -Mnobackslash -Mbackslash -Mnobackslash %s 2>&1 | FileCheck %s
16
+! RUN: not %flang -c -fbackslash -fno-backslash -fbackslash %s 2>&1 | FileCheck %s
17
18
write (*,*) "\" ! CHECK: Unmatched quote
19
end
0 commit comments