Sign in
dart
/
sdk
/
/
db89c2d1ac3e8b6c6130cbb714c4e242e6fefc27
/
.
/
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
;
}