It is easy to reproduce. Just create a new project, choose 'CLR Console Application' from the templates and add a leak, something like
#include "vld.h"
int main(array<System::String ^> ^args)
{
int* thisShouldLeak = new int(5);
return 0;
}