run_fail-fail-warn.cpp 336 B

123456789101112
  1. // (C) Copyright Beman Dawes 2003. Distributed under the Boost
  2. // Software License, Version 1.0. (See accompanying file
  3. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. int main()
  5. {
  6. short s;
  7. unsigned long ul;
  8. s = s & ul; // warning from many compilers
  9. if ( s == ul ) {} // warning from GCC
  10. return 0;
  11. }
粤ICP备19079148号