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