aboutsummaryrefslogtreecommitdiff
path: root/check/type/mulop/fail-int.p
diff options
context:
space:
mode:
Diffstat (limited to 'check/type/mulop/fail-int.p')
-rw-r--r--check/type/mulop/fail-int.p6
1 files changed, 6 insertions, 0 deletions
diff --git a/check/type/mulop/fail-int.p b/check/type/mulop/fail-int.p
new file mode 100644
index 0000000..fdd83e3
--- /dev/null
+++ b/check/type/mulop/fail-int.p
@@ -0,0 +1,6 @@
+program main ( input, output );
+ var a: integer;
+begin
+ a := 1 * 1.1;
+ a := 1.1
+end.