URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.jason/] [const2.C] - Rev 12
Compare with Previous | Blame | View Log
// { dg-do run }
// Example of static member constants
extern "C" int printf (const char *, ...);
struct T {
static const char letter = 'a'; // this is the new stuff!
char x[letter];
void f();
};
void T::f() { printf ("%p", &letter); }
const char T::letter; // still need def after class
int main() { }