[libc++][NFC] Add missing 'return 0'

This commit is contained in:
Louis Dionne 2022-06-08 12:56:13 -04:00
parent ea8ed5cbcf
commit 0392d425bb
1 changed files with 2 additions and 0 deletions

View File

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