mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
9 lines
133 B
JavaScript
9 lines
133 B
JavaScript
// This used to cause an assert fail...
|
|
|
|
result=1;
|
|
print("ERROR IS EXPECTED!");
|
|
function a(a) { print(a==undefined:"un":a); }
|
|
a();
|
|
|
|
|