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