Sign in
dart
/
sdk
/
/
9c5d54cc7eccf934005b71e960be5da123ff0dbf
/
.
/
pkg
/
analyzer_cli
/
test
/
data
/
file_with_assert_initializers.dart
blob: 46b7c0c5873637dfb49ffdecc7c4b3fdb427f1af [
file
]
class
C
{
int
_x
,
_y
;
C
(
x
,
y
)
:
_x
=
x
,
assert
(
x
<
y
),
_y
=
y
;
}