blob: e245936d837ce6c2de56fe1022bd3a1f6ad899f1 [file] [log] [blame]
void method() {}
void v1 = method();
var v2 = method();
List<void> l1 = [method()];
var l2 = [method()];
test(Iterable<void> iterable, Stream<void> stream) async {}
main() {}