📄 exception1.c
字号:
/* PR 2743 *//* {dg-do compile} */namespace ns { class Exception { };}namespace ns{ class Test { public: inline Test() throw( Exception ); inline Test(int n ) throw( Exception ); private: int i; };}// This line used to fail because Exception wasn't looked up in the// right scope.ns::Test::Test() throw( Exception ) : i( 1 ){}ns::Test::Test( int n ) throw( Exception ) : i( n ){}int main(int argc, char* argv) { ns::Test test;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -