view test/mex/bug_54096.c @ 33596:96a203bc7e17 bytecode-interpreter tip

maint: Merge default to bytecode-interpreter
author Nicholas R. Jankowski <jankowski.nicholas@gmail.com>
date Fri, 17 May 2024 22:49:58 -0400
parents e255f09dc70e
children
line wrap: on
line source

#include "mex.h"

static const char* field_names[] = {"field"};

void mexFunction (int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
  mxArray *tmp_val;

  plhs[0] = mxCreateStructMatrix (1, 1, 1, field_names);

  mxSetFieldByNumber (plhs[0], 0, 0, NULL);

  tmp_val = mxGetFieldByNumber (plhs[0], 0, 0);

  if (tmp_val)
    mexErrMsgTxt ("struct elements set to NULL should be NULL internally");

  /* But in the interpreter, they should appear as [].  */
}