blob: 18c161c6e278784c0c0714127169307fc8096b92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Build don't link:
// Based on bug report by Simon A. Crase <s.crase@ieee.org>
// crash test - XFAIL *-*-*
struct foo {
template <class T> void bar();
};
template void foo::bar<void>(); // gets bogus error - ICE - XFAIL *-*-*
|