blob: ec6971acdb103a37bf888f8e66fe585a42a73ac1 [file] [log] [blame]
Dale Johannesenc54a8ab2008-06-10 18:00:09 +00001// RUN: %llvmgcc -S -w %s -o -
Dan Gohmanf17a25c2007-07-18 16:29:46 +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}