7 lines
112 B
JavaScript
7 lines
112 B
JavaScript
// Error: :5:5: Strict mode code may not include a with statement
|
|
|
|
class C {
|
|
method() {
|
|
with ({}) {}
|
|
}
|
|
} |