Sign in
dart
/
sdk.git
/
refs/tags/2.13.0-9.0.dev
/
.
/
tests
/
language
/
null_aware
/
index_this_null_aware_equals_test.dart
blob: fc2ccc99fc5420b0312ce2e5e24aa01874f77257 [
file
] [
log
] [
blame
]
class
C
{
static
final
Expando
<
int
>
_debugIds
=
new
Expando
<
int
>();
static
int
_nextDebugId
=
0
;
@override
String
toString
()
{
int
id
=
_debugIds
[
this
]
??=
_nextDebugId
++;
return
'C$id'
;
}
}
main
()
{
print
(
C
());
}