Make testcase more interesting
[oota-llvm.git] / test / CFrontend / 2003-07-22-ArrayAccessTypeSafety.c.tr
index 7024ff7727edb30ff7ed7ff0c5400afb5e63dcf9..4473bfe6e10fd1bb92cdba129053f91a8857dc23 100644 (file)
@@ -2,6 +2,6 @@
  */
 
 void test(int* array, long long N) {
-    array[N] = 33;
+    array[N] = N[array] = 33;
 }