I have the following code snippet:
class ImmutablePoint { final double x, y; const ImmutablePoint(this.x, this.y); } void main() { var i = const I