Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
mixin_application_lub.dart.textual_outline.expect
blob: 3944e0721453c85af06e598c3c6b5f2919517525 [
file
] [
log
] [
blame
]
// @dart = 2.9
class
Diagnosticable
{}
class
SomeClass
with
Diagnosticable
{}
class
State
<
T
>
with
Diagnosticable
{}
class
StateA
extends
State
{}
class
StateB
extends
State
<int>
{}
StateA
a
=
StateA
();
StateB
b
=
StateB
();
foo
<
T
>(
T x
)
{}
main
()
{}