Sign in
dart
/
sdk.git
/
a304e5b156a9f33943d88e451d65275fc1b065a0
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
callable_generic_class.dart.textual_outline.expect
blob: 404e3fc1747bbaf2ab20865d37d9c0e7d054791a [
file
] [
log
] [
blame
]
library test
;
class
ActionDispatcher
<
P
>
{
void
call
([
P
?
value
])
{}
}
class
Bar
{}
class
FooActions
{
ActionDispatcher
<
Bar
>
get
foo
=>
new
ActionDispatcher
<
Bar
>();
}
void
main
()
{}