superlint/.automation/test/dart/dart_bad_1.dart
2020-07-06 01:17:20 -07:00

6 lines
91 B
Dart

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