|
|
| Bugzilla Link |
11419 |
| Resolution |
INVALID |
| Resolved on |
Apr 23, 2019 15:02 |
| Version |
trunk |
| OS |
Linux |
| Reporter |
LLVM Bugzilla Contributor |
Extended Description
Compiled with clang++ -c a.ii, I get an assertion failure:
template class CMap_one_dart_per_cell_iterator {
};
template < unsigned int > struct Combinatorial_map_base {
static const unsigned int dimension = 42;
template struct One_dart_per_cell_range {
typedef CMap_one_dart_per_cell_iterator iterator;
};
};
typedef Combinatorial_map_base<3> CMap_3;
int main() {
CMap_3::One_dart_per_cell_range<>::iterator a;
}