blob: 0114b019927b26bfd3d07568bfd884ef5eb11963 [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() {}