-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patharrayTest.out
More file actions
36 lines (24 loc) · 759 Bytes
/
arrayTest.out
File metadata and controls
36 lines (24 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
*** Error line 11.
fu(i, f);
^^
*** Formal type mismatch in function 'fu' at pos 1: expected 'int[]', given 'int'
*** Error line 12.
fu(is, f);
^^
*** Formal type mismatch in function 'fu' at pos 2: expected 'float[]', given 'float'
*** Error line 13.
fu(fs, is);
^^
*** Formal type mismatch in function 'fu' at pos 1: expected 'int[]', given 'float[]'
*** Error line 15.
foo(is, fs);
^^^
*** Formal type mismatch in function 'foo' at pos 1: expected 'int', given 'int[]'
*** Error line 16.
foo(i, fs);
^^^
*** Formal type mismatch in function 'foo' at pos 2: expected 'float', given 'float[]'
*** Error line 17.
foo(f, i);
^^^
*** Formal type mismatch in function 'foo' at pos 1: expected 'int', given 'float'