Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / init / float1.C
blobd18ff3db0a2f716776fad406190ef1beabb92fb2
1 // PR c++/21089
2 // { dg-do run }
4 extern "C" void abort();
6 static const double a = 1.0;
7 struct S {
8   S();
9 };
10 static S s;
11 static const double b = a + 1.0;
13 S::S() {
14   if (b < 1.9 || b > 2.1)
15     abort ();
18 int main () {