https://issues.dlang.org/show_bug.cgi?id=16305
Issue ID: 16305
Summary: opCat opCatAssign priority bug
Product: D
Version: D2
Hardware: x86
OS: Windows
Status: NEW
Severity: enhancement
Priority: P1
Component: dmd
Assignee: [email protected]
Reporter: [email protected]
import std.stdio;
void main(){
int[] m = [1,2,3];
m = m ~ 4 ~ 5; // ok
m ~= 4 ~ 5; // not work
}
--
