summaryrefslogtreecommitdiff
path: root/test/Parser
diff options
context:
space:
mode:
authorarphaman <arphaman@gmail.com>2013-09-14 13:03:23 +0100
committerarphaman <arphaman@gmail.com>2013-09-14 13:03:23 +0100
commit8faf776a94e8145925f13c157801fd364ca648d6 (patch)
tree5731d90b5f6633c0fff6dc9d3b532ceab44382a4 /test/Parser
parent145e670d60b8868b1c0b3653f0483c16ee69d6b8 (diff)
downloadflang-8faf776a94e8145925f13c157801fd364ca648d6.tar.gz
fixed parsing for programs which begin with type statements
Diffstat (limited to 'test/Parser')
-rw-r--r--test/Parser/minimalAmbiguous.f954
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Parser/minimalAmbiguous.f95 b/test/Parser/minimalAmbiguous.f95
new file mode 100644
index 0000000000..2ed490f1ea
--- /dev/null
+++ b/test/Parser/minimalAmbiguous.f95
@@ -0,0 +1,4 @@
+! RUN: %flang -fsyntax-only < %s
+INTEGER I
+I = 0
+END