Fix tagging static methods as structural

This commit is contained in:
Alex Crichton
2018-11-08 11:50:34 -08:00
parent b013ec6288
commit 64a6241960
3 changed files with 21 additions and 3 deletions

View File

@ -131,3 +131,9 @@ exports.CatchConstructors = class {
}
}
};
exports.StaticStructural = class {
static static_structural(x) {
return x + 3;
}
};