7 lines
104 B
JavaScript
7 lines
104 B
JavaScript
function broken(x, ...foo) {
|
|
if (true) {
|
|
class Foo extends Bar { }
|
|
return hello(...foo)
|
|
}
|
|
}
|