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

            Bug ID: 49951
           Summary: compile crash on template template
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: -New Bugs
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected], [email protected]

Created attachment 24749
  --> https://bugs.llvm.org/attachment.cgi?id=24749&action=edit
stderr/stdout

Reproduction test case

Clang segfaults on the following code snippet:
```
template<typename T,
    template<T> class SType,
    template<T, template<T> class> class TT>
void fun() {
    TT<T{}, SType>{};
}
```


https://wandbox.org/permlink/lU7e5aeViujWSRnD


Probably related?
https://bugs.llvm.org/show_bug.cgi?id=36852

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to