aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/field1.C
blob: a719135e3f9d035528e6421d47ca81239a505e83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// { dg-do compile }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 9 Jul 2003 <nathan@codesourcery.com>

// PR c++ 9483.  accepted fields with same name as class

struct test
{
  char test;  // { dg-error "with same name as class" "" }
  test();
};

template <typename T> struct X
{
  char X;  // { dg-error "with same name as class" "" }
  X ();
};

template <> struct X<int> {
  char X;  // { dg-error "with same name as class" "" }
  X();
};

X<float> i; // { dg-message "required from" "" }