cmd_line_check.cpp 290 B

123456789101112131415
  1. // Copyright 2014 John Maddock.
  2. //
  3. // Distributed under the Boost Software License, Version 1.0.
  4. //
  5. // See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt
  7. #ifndef __clang__
  8. # error "This test is for Clang only"
  9. #endif
  10. int main()
  11. {
  12. return 0;
  13. }