📄 unreach.dcf
字号:
class Program { void foo1() { callout("printf","in foo1\n"); return; callout("printf","You should not see this.\n"); } void foo2() { callout("printf","in foo2\n"); while (true) { // should remove test callout("printf","in loop\n"); return; } callout("printf","after loop\n"); // should remove return; // should remove callout("printf","after loop\n"); // should remove } void foo3() { // Entire proc can be removed callout("printf","in foo3\n"); } void main() { int a; if (true) { // should remove test callout("printf","if true\n"); } if (false) { // should remove callout("printf","if false\n"); // should remove } if (a == a) { // may remove test (possibly due to other opts) callout("printf","if a==a"); } while (false) { // should remove callout("printf","while false\n"); } foo1(); foo2(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -