There is an error on the use modifiers in a local class definition. ``` ts function f() { class C { static foo() { } // Modifiers cannot appear here. public bar() { } // Modifiers cannot appear here. } } ``` Ditto for class expressions.
There is an error on the use modifiers in a local class definition.
Ditto for class expressions.