[libc++] Add missing 'return 0;' to main() in test

This commit is contained in:
Louis Dionne 2022-04-08 17:10:58 -04:00
parent f950ba004b
commit 72cd50b6fd
1 changed files with 2 additions and 0 deletions

View File

@ -90,4 +90,6 @@ constexpr bool test() {
int main(int, char**) {
test();
static_assert(test());
return 0;
}