1//PR c++/27670
2
3template<operator+> void foo(); // { dg-error "before|parameter|template" }
4
5void bar()
6{
7  foo();                        // { dg-error "no matching function" }
8}
9
10