OSDN Git Service

7dffda39da2a6ec31d1c8d0f3ad4f70619f430ac
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 20_util / ratio / operations / ops_overflow.cc
1 // { dg-options "-std=gnu++0x" }
2 // { dg-do compile }
3
4 // 2008-07-03 Chris Fairles <chris.fairles@gmail.com>
5
6 // Copyright (C) 2008 Free Software Foundation
7 //
8 // This file is part of the GNU ISO C++ Library.  This library is free
9 // software; you can redistribute it and/or modify it under the
10 // terms of the GNU General Public License as published by the
11 // Free Software Foundation; either version 2, or (at your option)
12 // any later version.
13
14 // This library is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18
19 // You should have received a copy of the GNU General Public License
20 // along with this library; see the file COPYING.  If not, write to
21 // the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 // Boston, MA 02110-1301, USA.
23
24 #include <ratio>
25
26 #ifdef _GLIBCXX_USE_C99_STDINT_TR1
27
28 void
29 test01()
30 {
31   std::ratio_add<std::ratio<INTMAX_MAX, 1>, std::ratio<1>>::type r1;
32 }
33
34 void
35 test02()
36 {  
37   std::ratio_multiply<std::ratio<-INTMAX_MAX, 2>, std::ratio<3, 2>>::type r1;
38   std::ratio_multiply<std::ratio<INTMAX_MAX>, std::ratio<INTMAX_MAX>>::type r2;
39 }
40
41 // { dg-error "instantiated from here" "" { target *-*-* } 31 }
42 // { dg-error "instantiated from here" "" { target *-*-* } 37 }
43 // { dg-error "instantiated from here" "" { target *-*-* } 38 }
44 // { dg-error "overflow in addition" "" { target *-*-* } 127 }
45 // { dg-error "overflow in multiplication" "" { target *-*-* } 95 }
46 // { dg-error "overflow in multiplication" "" { target *-*-* } 97 }
47 // { dg-error "overflow in multiplication" "" { target *-*-* } 99 }
48 // { dg-excess-errors "In instantiation of" }
49 // { dg-excess-errors "out of range" }
50
51 #endif //_GLIBCXX_USE_C99_STDINT_TR1