Files
sdk/pkg/analyzer_cli/test/data/file_with_assert_initializers.dart
T
Sam Rawlins fffa3ac5d4 analyzer_cli: Enforce strict-inference
Change-Id: Idd8a8cdd1e72be5f4d0f1edabdc8254b801d17ad
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/155100
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Samuel Rawlins <srawlins@google.com>
2020-07-21 03:39:24 +00:00

8 lines
91 B
Dart

class C {
int _x, _y;
C(x, y)
: _x = x,
assert(x < y),
_y = y;
}