/* libmisc/tests/test_assert_min.c - Tests for minimal <libmisc/assert.h>
 *
 * Copyright (C) 2024  Luke T. Shumaker <lukeshu@lukeshu.com>
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

/* Don't include *anything* else.  */
#include <libmisc/assert.h>

static_assert(1 == 1);

int main() {
	assert_msg(1, "foo");
	assert(1);
	return 0;
	assert_notreached("ret");
}