[debuginfo-test] Fix -Wunused-value

This commit is contained in:
Fangrui Song 2021-01-06 20:39:07 -08:00
parent a855c9403f
commit 25bf4a8f42
1 changed files with 2 additions and 2 deletions

View File

@ -59,8 +59,8 @@ int main() {
// Reference symbols that might otherwise be stripped. // Reference symbols that might otherwise be stripped.
ArrayRef[0]; ArrayRef[0];
MutableArrayRef[0]; MutableArrayRef[0];
!ExpectedValue; (void)!ExpectedValue;
!ExpectedError; (void)!ExpectedError;
*OptionalValue; *OptionalValue;
*OptionalNone; *OptionalNone;
return 0; return 0;