1void main () {
2	var f = (float?) 23.0f;
3	assert (f == 23.0f);
4
5	var d = (double?) 42.0;
6	assert (d == 42.0);
7}
8