1 /// @file 2 /// Test creation error message with only 1 matching character 3 /// \test Test creation error message with only 1 matching character 4 #include <ceed.h> 5 6 int main(int argc, char **argv) { 7 Ceed ceed; 8 9 argv[1][1] = 'd'; 10 CeedInit(argv[1], &ceed); 11 CeedDestroy(&ceed); 12 13 return 0; 14 } 15