📄 return.c
字号:
// { dg-do run }// PRMS Id: 5331// Bug: the return value of foo is constructed in a temporary and then// copied into the return slot. This is not necessary.int c = 0;struct X { X(int i) { } X(X const &XX) { c = 1; } ~X() { }};const X foo() { return X(3); }int main(){ foo(); return c;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -