Lines Matching +full:p +full:- +full:try
1 //===--------------------- catch_const_pointer_nullptr.cpp ----------------===//
8 //===----------------------------------------------------------------------===//
10 // UNSUPPORTED: libcxxabi-no-exceptions
18 #pragma clang diagnostic ignored "-Wexceptions"
27 try in test1()
32 catch (A* p) in test1() local
34 assert(!p); in test1()
45 try in test2()
50 catch (const A* p) in test2() local
52 assert(!p); in test2()
62 try in test3()
67 catch (const A* const p) in test3() local
69 assert(!p); in test3()
79 try in test4()
84 catch (A* p) in test4() local
86 assert(!p); in test4()
96 try in test5()
101 catch (A const* p) in test5() local
103 assert(!p); in test5()
113 try in test6()
118 catch (A* p) in test6() local
120 assert(!p); in test6()