nss: upgrade to release 3.73
[LibreOffice.git] / compilerplugins / clang / test / implicitboolconversion.cxx
blob31082d1d378b80627c905a1d07d58df00c1fcd8f
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 <sal/config.h>
12 #include <atomic>
14 #include <sal/types.h>
16 bool g();
18 void f()
20 // expected-error@+1 {{implicit conversion (IntegralCast) from 'bool' to 'int' [loplugin:implicitboolconversion]}}
21 int i = false;
22 // expected-error@+1 {{implicit conversion (IntegralCast) from 'bool' to 'int' [loplugin:implicitboolconversion]}}
23 i = true;
24 (void)i;
25 std::atomic<bool> b = false;
26 (void)b;
27 //TODO: Emit only one diagnostic here:
28 // expected-error@+2 {{implicit conversion (ConstructorConversion) from 'bool' to 'std::atomic<int>' [loplugin:implicitboolconversion]}}
29 // expected-error-re@+1 {{implicit conversion (IntegralCast) from 'bool' to {{.+}} [loplugin:implicitboolconversion]}}
30 std::atomic<int> a = false;
31 (void)a;
32 bool b2 = true;
33 b2 &= g();
36 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */