URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [parse/] [extern-C-1.C] - Rev 832
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR c++/4754 */
/* { dg-do compile } */
// GCC 3.2 got very confused by the nested extern "C" blocks, and thought
// there was a storage class specifier on 'int i'.
extern "C"
{
extern "C" struct Test
{
int i;
};
}
Go to most recent revision | Compare with Previous | Blame | View Log