📄 wshadow-1.c
字号:
/* Copyright (C) 2001 Free Software Foundation, Inc. *//* { dg-do compile } *//* { dg-options "-Wshadow -pedantic-errors" } *//* Source: Neil Booth, 5 Dec 2001. */int decl1; /* { dg-warning "shadowed declaration" } */void foo (double decl1) /* { dg-warning "shadows a global decl" } */{ }void foo1 (int d){ double d; /* { dg-bogus "warning" "warning in place of error" } */ /* { dg-error "shadows a parameter" "" { target *-*-* } 15 } */}void foo2 (int d) /* { dg-warning "shadowed declaration" } */{ { double d; /* { dg-warning "shadows a parameter" } */ }}void foo3 (){ int local; /* { dg-warning "shadowed declaration" } */ { int local; /* { dg-warning "shadows a previous local" } */ }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -