blob: b95e186079ae2ec3e7636d2031b37bda5d4e1b7e [file] [log] [blame]
main(List<int>? a, bool? b) {
a![0];
a?[0];
a!?[0];
(a!)?[0];
b!?[0]:0;
(b!)?[0]:0;
}