URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [parse/] [offsetof4.C] - Rev 832
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// Contributed by Bill Helfinstine <bhelf at flitterfly dot whirpon dot com>
// PR c++/14932: Allow subscript operator in offsetof
#include <cstddef>
struct A
{
int bar;
int foo[22];
};
const int off = offsetof(A, foo[12]);
Go to most recent revision | Compare with Previous | Blame | View Log