|
|
| Bugzilla Link |
15360 |
| Resolution |
FIXED |
| Resolved on |
Feb 27, 2013 16:13 |
| Version |
trunk |
| OS |
MacOS X |
| Reporter |
LLVM Bugzilla Contributor |
| CC |
@dwblaikie,@DougGregor |
Extended Description
Compiling the following causes a crash. Tested with 3.2 and trunk on OS X and Linux.
template<class C, void fn(C)>
struct type
{
virtual void f(int arg)
{
fn(arg);
}
};
type<int, nullptr> g;