fffa3ac5d4
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>
8 lines
91 B
Dart
8 lines
91 B
Dart
class C {
|
|
int _x, _y;
|
|
C(x, y)
|
|
: _x = x,
|
|
assert(x < y),
|
|
_y = y;
|
|
}
|