libcdsb/tests/src/set/main.c
2022-06-06 22:08:10 +03:00

12 lines
277 B
C

/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2022 Gregory Lirent */
#include "plug.h"
int main(int argc, char** argv) {
test_init(argc, argv);
vtype_set x = vset_random(32);
vset_free(&x);
}