aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/warn/Wextra-1.C
blob: c75a6b087675a4c3e9932acf441ecada954b275b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-options "-Wextra" }

struct T {
  // If the implicitly-declared default constructor for "T" is
  // required, an error will be issued because "i" cannot be
  // initialized.  And, this class is not an aggregate, so it cannot
  // be brace-initialized.  Thus, there is no way to create an object
  // of this class.  We issue a warning with -Wextra.
  const int i;			// { dg-warning "const" }
private:
  int j;
};