blob: 9aef9e2e0825f7a114728421bde19b2d19a93cd1 [file] [log] [blame]
main() {
var x = int.parse('1233');
var y = int.parse('1234');
print(x is num);
print(y is num);
print(x | y);
print(x is num);
print(y is num); // will be compiled to `true` if we know the type of `y`.
}