naming-1.m

来自「this is a gcc file, you can download it 」· M 代码 · 共 22 行

M
22
字号
/* Test for obscuring of @interfaces with local vars.  *//* Author: Ziemowit Laski <zlaski@apple.com>.  *//* { dg-do compile } */@interface View@endvoid foo(void){        int View;	/* ok */        View = 1;	/* ok */	View *view;	/* { dg-error "`view' undeclared" } */	/* { dg-error "is reported only once" "" { target *-*-* } 12 } */	/* { dg-error "function it appears in" "" { target *-*-* } 12 } */}void bar(void){	View *view;	/* ok */	View = 1;	/* { dg-error "(parse|syntax) error" } */}

⌨️ 快捷键说明

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