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

5 lines
88 B
Dart

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