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() {}