blob: 258ee94d289d0a0f110c5425cb39139cc101bfce [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() {}