int v = 123; int^ p = @v; int^? op1 = makeopt @v; int^? op2 = makeopt p; // makeopt is not requried for pointers //int^? op3 = @p; // FIXME