📄 try-catch-15.mm
字号:
/* APPLE LOCAL file radar 4330422 *//* Test if addition of 'volatile' to object causes bogus error in presence of try-catch. *//* { dg-options "-fobjc-exceptions" } *//* { dg-do compile } */@interface Exception@endclass CppObj {public: void constMethod() const { }};@interface MyObject : Exception- (void)doSomething;- (void)myMethod;@end@implementation MyObject- (void)doSomething {}- (void)myMethod { CppObj cppObj; @try { [self doSomething]; } @catch (Exception *exception) { } cppObj.constMethod();}@end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -