[Issue 9404] Nullable is unusable with 2.061

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Jan 26 07:55:17 PST 2013


http://d.puremagic.com/issues/show_bug.cgi?id=9404



--- Comment #1 from Artem Tarasov <lomereiter at gmail.com> 2013-01-26 07:55:13 PST ---
Further reduced case:

import std.typecons;

alias N = Nullable!int;

void foo(N a) {
    N b;
    b = a; // `N b = a;` works fine
}

void main() {
    N n;
    foo(n);
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list