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