superlint/.automation/test/dart/dart_good_1.dart

7 lines
89 B
Dart
Raw Normal View History

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