Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.mike / eh57.C
blob087b4131bf1eca705abb33c004f5e9c94612922d
1 // { dg-do assemble  }
2 // { dg-options "-fno-exceptions" }
4 class Calendar_Time {
5 public:
6   ~Calendar_Time ();
7   int operator <= (const Calendar_Time& t) const;
8 };
10 class Temporal_Model_Interval {
11 public:
12   Calendar_Time start_time ();
15 int intersects_p (Temporal_Model_Interval* i1, Temporal_Model_Interval* i2) {
16   return ((i1->start_time() <= i2->start_time())
17           || (i1->start_time() <= i2->start_time()));