Home | History | Annotate | Download | only in header.ratio.synop
      1 //===----------------------------------------------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 // UNSUPPORTED: c++98, c++03, c++11
     11 // <experimental/ratio>
     12 
     13 // Test that <ratio> is included.
     14 
     15 #include <experimental/ratio>
     16 
     17 #ifndef _LIBCPP_RATIO
     18 #  error " <experimental/ratio> must include <ratio>"
     19 #endif
     20 
     21 int main()
     22 {
     23 }
     24