johnsonjh/duma

View on GitHub
examples/example1.cpp

Summary

Maintainability
Test Coverage
#include <stdlib.h>

int main() {
  int *pi;
  int i;
#ifdef DUMA_EXPLICIT_INIT
  duma_init();
#endif
  pi = (int *)malloc(10 * sizeof(int));
  for (i = 0; i < 11; ++i)
    pi[i] = i; // this line should produce error with i == 10
  return 0;
}