Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
ignore_function.dart.textual_outline.expect
blob: 74f997b31d187472add3238ccdaa1672ead4129a [
file
] [
log
] [
blame
]
// @dart = 2.9
import
"dart:core"
as
core
;
class
A
implements
core
.
Function
{
operator
==(
other
)
=>
false
;
}
class
B
implements
Function
{
operator
==(
other
)
=>
false
;
}
class
Function
{
core
.
bool
operator
==(
core
.
Object
other
)
=>
false
;
}
main
()
{}