compile-fail.cpp 302 B

1234567891011121314
  1. // Copyright (c) 2014 Rene Rivera
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See
  4. // accompanying file LICENSE.txt or copy at
  5. // https://www.bfgroup.xyz/b2/LICENSE.txt)
  6. #include <iostream>
  7. #include <cstdlib>
  8. int main()
  9. {
  10. std::cout << "Bye!\n";
  11. return EXIT_FAILURE
  12. }