Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
issue41070.dart.textual_outline.expect
blob: bf2cc1bdc3f7005668410f0eeffc9cf49b7a9589 [
file
] [
log
] [
blame
]
// @dart = 2.9
abstract
class
Mixin
{}
class
Base
{
final
int
x
;
const
Base
(
this
.
x
);
}
class
Application
=
Base
with
Mixin
;
main
()
{}
expect
(
expected
,
actual
)
{}