Files
Esben Sparre Andreasen 01ad9ed8bc JS: address review comments
2018-11-21 09:19:20 +01:00

10 lines
113 B
JavaScript

class X {
m() {
m("default"); // OK
}
resty(...x) {
m("default"); // NOT OK
}
}