unary2.c

来自「用于进行gcc测试」· C语言 代码 · 共 21 行

C
21
字号
// { 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 "lvalue" }  +n = 0;        // { dg-error "lvalue" }}template <int>void g(void){  -n = 0;        // { dg-error "lvalue" "" { xfail *-*-* } }  +n = 0;        // { dg-error "lvalue" "" { xfail *-*-* } }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?