mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-14 16:35:03 +01:00
22 lines
231 B
Text
22 lines
231 B
Text
//@check-pass
|
|
|
|
function main() = (
|
|
let x = 0;
|
|
let _ok = 0;
|
|
let used = 0;
|
|
|
|
used;
|
|
);
|
|
|
|
function x() = (
|
|
let x = 0;
|
|
(
|
|
let x = 0;
|
|
call(x);
|
|
);
|
|
let y = x;
|
|
);
|
|
|
|
function call(_a: Int) = ;
|
|
|
|
function param(p: Int) = ;
|