alias T = Tuple!(int, "a", double, "b"); T foo = [1, 2]; // works T bar; bar = [1, 2]; // doesn't?
Wonder if there's an obvious reason to this?
alias T = Tuple!(int, "a", double, "b"); T foo = [1, 2]; // works T bar; bar = [1, 2]; // doesn't?
Wonder if there's an obvious reason to this?