summaryrefslogtreecommitdiff
path: root/tests/test_malloc.c
blob: 360ee82fecf5bb138db6cd69492771dd53828cfd (plain)
1
2
3
4
5
6
7
#include "common.h"

#include <stdlib.h>

int main(int argc, char** argv) {
  free(malloc(1));
}