blob: 7d7961b16c834ebee5f0f4e5729b3957697e2d83 [file] [log] [blame]
Nuno Lopesf2319982009-02-02 15:00:55 +00001// RUN: clang -fsyntax-only -verify %s
2
3// PR3459
4struct bar {
5 char n[1];
6};
7
8struct foo {
9 char name[(int)&((struct bar *)0)->n];
Nuno Lopes1dfa6e12009-02-02 22:32:08 +000010 char name2[(int)&((struct bar *)0)->n - 1]; //expected-error{{fields must have a constant size}}
Nuno Lopesf2319982009-02-02 15:00:55 +000011};