superlint/test/linters/dart/dart_bad_1.dart

6 lines
90 B
Dart
Raw Normal View History

2020-07-06 04:17:20 -04:00
// empty_constructor_bodies bad {}
class Point {
int x, y;
Point(this.x, this.y) {}
}