prettier/tests/flow/this_type/class_expr.js

9 lines
140 B
JavaScript

/* @flow */
// issue #1191
const Thing = class Thing {
zark() {
this.x = 123; // error: property not found (must be declared)
}
};