mirror of
https://github.com/Noratrieb/riverdelta.git
synced 2026-01-14 08:25:02 +01:00
10 lines
246 B
Text
10 lines
246 B
Text
function main() = (
|
|
let a: Int = "";
|
|
//~^ ERROR: cannot assign String to Int
|
|
//~| WARN: unused variable: `a`
|
|
let b: Int = "";
|
|
//~^ ERROR: cannot assign String to Int
|
|
//~| WARN: unused variable: `b`
|
|
c;
|
|
//~^ ERROR: cannot find c
|
|
);
|