blob: f7562bc281fe7a62a97cf3be5f95741b7e76fe81 [file] [log] [blame]
// { dg-do compile }
// Unary plus/minus are not lvalues.
// In templates we require an instantiation to emit the diagnostic. This
// is wrong and it is PR 18474.
int n;
void f(void)
{
-n = 0; // { dg-error "expression is not assignable" }
+n = 0; // { dg-error "expression is not assignable" }
}
template <int>
void g(void)
{
-n = 0; // { dg-error "expression is not assignable" }
+n = 0; // { dg-error "expression is not assignable" }
}