babel/test/fixtures/traceur/Syntax/Error_WithInClass.js
2015-01-04 19:40:09 +11:00

7 lines
112 B
JavaScript

// Error: :5:5: Strict mode code may not include a with statement
class C {
method() {
with ({}) {}
}
}