blob: ec6971acdb103a37bf888f8e66fe585a42a73ac1 [file] [log] [blame]
Dale Johannesen6a024322008-06-10 18:00:09 +00001// RUN: %llvmgcc -S -w %s -o -
Chris Lattner7824cc62007-02-17 05:44:57 +00002// PR1170
3int f(int a, struct {int b[a];} c) { return c.b[0]; }
4
5int g(struct {int b[1];} c) {
6 return c.b[0];
7}