http://llvm.org/bugs/show_bug.cgi?id=6900

           Summary: Can't compile compound expressions as lvalues
           Product: clang
           Version: trunk
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected], [email protected]
            Blocks: 6023


cove:clang dgregor$ cat t2.C
void f(int i, int j, int k) {
  (i += j) += k;
}
cove:clang dgregor$ clang++ t2.C
t2.C:2:4: error: cannot compile this l-value expression yet
  (i += j) += k;
   ^~~~~~
1 error generated.

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to