https://llvm.org/bugs/show_bug.cgi?id=26352

            Bug ID: 26352
           Summary: Implement CWG 1307; Differently bounded array
                    parameters
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++14
          Assignee: unassignedclangb...@nondot.org
          Reporter: r...@gmx.net
                CC: llvm-bugs@lists.llvm.org
    Classification: Unclassified

int main() {
  int f(int(&&)[1]);
  int f(int(&&)[2]);
  f({1});
}

The list initialization sequence specified by [over.ics.list]/5 for the first
overload is better as per [over.ics.rank]/(3.1.2).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to