re PR tree-optimization/86572 (unsafe strlen folding of const arguments with non...
[official-gcc.git] / gcc / d / dmd / unittests.c
blob482782255d743e63cd1f528d7b820f1732ba484e
2 /* Compiler implementation of the D programming language
3 * Copyright (C) 1999-2018 by The D Language Foundation, All Rights Reserved
4 * written by Walter Bright
5 * http://www.digitalmars.com
6 * Distributed under the Boost Software License, Version 1.0.
7 * http://www.boost.org/LICENSE_1_0.txt
8 * https://github.com/D-Programming-Language/dmd/blob/master/src/unittests.c
9 */
11 #include <stdio.h>
13 #include "mars.h"
15 void unittest_speller();
16 void unittest_importHint();
17 void unittest_aa();
19 void unittests()
21 #if UNITTEST
22 unittest_speller();
23 unittest_importHint();
24 unittest_aa();
25 #endif