1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/FrontendC++/2005-02-20-BrokenReferenceTest.cpp

12 lines
182 B
C++
Raw Normal View History

2005-02-21 05:03:32 +01:00
// RUN: %llvmgxx %s -S -o /dev/null
void test(unsigned char *b, int rb) {
typedef unsigned char imgfoo[10][rb];
imgfoo &br = *(imgfoo *)b;
2005-02-21 05:03:32 +01:00
br[0][0] = 1;
rb = br[0][0];
}