-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
This snipped,
var foo = function (n) {
switch (n) {
case 1:
Console::outln(1);
function f() { Console::outln('f1') };
break;
case 2:
Console::outln(2);
function f() { Console::outln('f2') }
break;
}
f();
};
foo(1);
Causes the following error
Expected operator after 'Console::outln'
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels