-
Notifications
You must be signed in to change notification settings - Fork 15.2k
Closed
Labels
Description
Bugzilla Link | 11110 |
Resolution | FIXED |
Resolved on | Oct 12, 2011 10:41 |
Version | trunk |
OS | All |
Reporter | LLVM Bugzilla Contributor |
CC | @DougGregor |
Extended Description
clang ToT segfaults on the following code, extracted from a boost unique_ptr test (when compiling with libc++)
struct unique_ptr
{
template int operator=( int );
int operator=(unique_ptr );
};
const int i = __has_nothrow_assign(unique_ptr);