summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/template7.C
blob: 876096b7490ea47a9f67a7f4539179ec1bf934e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do assemble }


// Based on bug report by Eric NICOLAS <nicolas@bnp-eng.remcomp.com>

namespace foo {
  template<class F> struct bar {};
}

void baz() {
  foo::bar(); // { dg-error "" } template used as expression
}