blob: 2af71c5e9f550321312a8b2e77143dc1cd07ee45 [file] [log] [blame]
void main() {
dynamic i = 10;
print('${(i as int?)}');
print('${(i is int?)}');
}