gecko-dev/tools/clang-tidy/test/cppcoreguidelines-narrowing-conversions.cpp
Andi-Bogdan Postelnicu ca4a195007 Bug 1551842 - Add new clang-tidy checkers from clang 8.0.0. r=sylvestre,froydnj
Differential Revision: https://phabricator.services.mozilla.com/D31229

--HG--
extra : moz-landing-system : lando
2019-05-22 14:55:45 +00:00

4 lines
No EOL
58 B
C++

class Foo {
int f;
void a_f(double val) { f = val;}
};