superlint/.automation/test/dart/dart_bad_1.dart
2020-07-06 15:06:56 -07:00

5 lines
90 B
Dart

// empty_constructor_bodies bad {}
class Point {
int x, y;
Point(this.x, this.y) {}
}