URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [parse/] [bitfield2.C] - Rev 301
Compare with Previous | Blame | View Log
//PR c++/28053
struct X {};
struct A
{
X x : 2; // { dg-error "non-integral type" }
};
struct B : A {};
template <typename T>
struct C
{
T t : 3;
};
C<int> c;
template <typename T>
struct D
{
T t : 3; // { dg-error "non-integral type" }
};
D<double> d; // { dg-message "instantiated" }
template <typename T>
struct E
{
typedef T* U;
U t : 3; // { dg-error "non-integral type" }
};
E<double> e;