blob: 3c857355a502d065eec7ccdabbc52a44ac60a745 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Build don't link:
// crash test - XFAIL *-*-*
// Based on bug report by Eric NICOLAS <nicolas@bnp-eng.remcomp.com>
namespace foo {
template<class F> struct bar {};
}
void baz() {
foo::bar(); // ERROR - template used as expression
}
|