Commit | Line | Data |
---|---|---|
38ffcb1f SK |
1 | /* This is illegal, since there are two functions with the same name |
2 | in the same (consecutive) batch of mutually recursive functions. | |
3 | See also test48 */ | |
4 | let | |
5 | function g(a:int):int = a | |
6 | function g(a:int):int = a | |
7 | in | |
8 | 0 | |
9 | end |