bump product version to 6.3.0.0.beta1
[LibreOffice.git] / compilerplugins / clang / test / dbgunhandledexception.cxx
blob4ae15a58e55d5a96ca5d5ac3914c6eac091e2750
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <tools/diagnose_ex.h>
11 #include <sal/log.hxx>
13 void func1();
15 int main()
17 try
19 func1();
21 catch (std::exception const&)
23 SAL_WARN("xmloff", "message");
24 DBG_UNHANDLED_EXCEPTION(
25 "xmloff",
26 "message"); // expected-error@-2 {{DBG_UNHANDLED_EXCEPTION must be first statement in catch block [loplugin:dbgunhandledexception]}}
28 try
30 func1();
32 catch (std::exception const&)
34 DBG_UNHANDLED_EXCEPTION("xmloff", "message");
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */