summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/sizeof.C
blob: c336a7a4642275e098316a240a4c527d3bcb8dd1 (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile }

class Foo {
  int children[4];
public:
  unsigned function(void) {
    return sizeof (((Foo*)0)->children);
  }
};