blob: af15f814f168074ac0d203a6fa99cb8397631e77 [file] [log] [blame]
Chris Lattner333f75d2005-02-21 04:03:32 +00001// RUN: %llvmgxx %s -S -o /dev/null
2
3void test(unsigned char *b, int rb) {
4 typedef unsigned char imgfoo[10][rb];
5 imgfoo &br = *(imgfoo *)b;
6
7 br[0][0] = 1;
8
9 rb = br[0][0];
10}
11