1/*
2 * This tests the core_profile() function. When it was introduced, it wouldn't
3 * compile due to the number of arguments exposing various D compiler bugs.
4 * The test is a success if it compiles at all.
5 */
6
7BEGIN
8{
9	core_profile(COREPROFILE_SIGNPOST_POINT, 1024, 1, 2, 3, 4, 5);
10	exit(0);
11}
12