Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
callable_generic_class.dart.textual_outline_modelled.expect
blob: fcb2b47a1b9847b5c5b25162c64799be32414c8b [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
class
ActionDispatcher
<
P
>
{
void
call
([
P value
])
{}
}
class
Bar
{}
class
FooActions
{
ActionDispatcher
<
Bar
>
get
foo
=>
new
ActionDispatcher
<
Bar
>();
}
void
main
()
{}