aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/dfp/nofields.C
blob: 7234672d4e0eb59a8b36e9b3bfe123bf0c5c8f29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// PR c++/46862
// { dg-do compile }

namespace std
{
  namespace decimal
  {
    class decimal32 { };	// { dg-error "does not have any fields" }
    class decimal64 { };	// { dg-error "does not have any fields" }
    class decimal128 { };	// { dg-error "does not have any fields" }
  }
}

void
foo (std::decimal::decimal32 x,
     std::decimal::decimal64 y,
     std::decimal::decimal128 z)
{
}