Files
sysprof/src/libsysprof/tests/test-cplusplus.cpp
2024-02-24 11:41:56 +00:00

18 lines
283 B
C++

/*
* Copyright 2024 Simon McVittie
* SPDX-License-Identifier: GPL-3.0-or-later
*/
#include <sysprof.h>
#undef _NDEBUG
#include <assert.h>
int
main (G_GNUC_UNUSED int argc,
G_GNUC_UNUSED char *argv[])
{
assert (sysprof_callgraph_flags_get_type () != 0);
return 0;
}