/// @file /// Test CeedVectorDestroy state counter /// \test Test CeedVectorDestroy state counter #include int main(int argc, char **argv) { Ceed ceed; CeedVector x; CeedInt len = 10; CeedScalar *a; CeedInit(argv[1], &ceed); CeedVectorCreate(ceed, len, &x); CeedVectorSetValue(x, 0.0); CeedVectorGetArray(x, CEED_MEM_HOST, &a); // Write access not restored should generate an error CeedVectorDestroy(&x); // LCOV_EXCL_START CeedDestroy(&ceed); return 0; // LCOV_EXCL_STOP }