run-pass-warn.cpp 226 B

123456789
  1. // (C) Copyright Beman Dawes 2003.
  2. // See accompanying license for terms and conditions of use.
  3. int main()
  4. {
  5. // provoke a compiler warning
  6. char x = 0xffffffff;
  7. return x ? 0 : 0; // use x to eliminate other warnings
  8. }
粤ICP备19079148号