1 // RUN: %clang_analyze_cc1 -fcxx-exceptions -std=c++1z -analyzer-checker=alpha.clone.CloneChecker -analyzer-config alpha.clone.CloneChecker:MinimumCloneComplexity=10 -verify %s
3 // expected-no-diagnostics
9 try { x
--; } catch (int i
) {}
13 // Uses parenthesis instead of type
18 try { x
--; } catch (...) {}
22 // Catches a different type (long instead of int)
27 try { x
--; } catch (long i
) {}