summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/other/warning1.C
blob: 77653a1df13ec2ae3bb469a33f05bcaa63339893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do compile }

// PR c++/7804
// Floating point formatting in error and warning messages

extern "C" int printf(const char *, ...);

struct S
{
  static const float inf = 1.0f / 0.0f; // { dg-warning "1.0|float|initialization" }
  static const float nan = 0.0f / 0.0f; // { dg-warning "0.0|float|initialization" }
};

int main()
{
  // { dg-prune-output "not a member" }
  printf("%f\n%f\n", S::inf, S::nan);
  return 0;
}