bump product version to 6.4.0.3
[LibreOffice.git] / compilerplugins / clang / test / sallogareas.cxx
blob1b172ebd00b638b6762e7a0300ceeef7004941db
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 SAL_WARN(
18 "bob.none",
19 "message"); // expected-error@-2 {{unknown log area 'bob.none' (check or extend include/sal/log-areas.dox) [loplugin:sallogareas]}}
21 SAL_WARN("xmloff", "message");
23 try
25 func1();
27 catch (std::exception const&)
29 DBG_UNHANDLED_EXCEPTION(
30 "bob.none",
31 "message"); // expected-error@-2 {{unknown log area 'bob.none' (check or extend include/sal/log-areas.dox) [loplugin:sallogareas]}}
33 try
35 func1();
37 catch (std::exception const&)
39 DBG_UNHANDLED_EXCEPTION("xmloff", "message");
41 try
43 func1();
45 catch (std::exception const&)
47 DBG_UNHANDLED_EXCEPTION("xmloff");
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */